Commit 05061762 authored by pichoro's avatar pichoro

Updated Vanguard Keywords.

Added some fields that are necessary for modern tokens and futureshifts.
Altered card sorting script to sort cards with super type "Basic Land" but common rarity as non-basic lands.
parent e68e8bef
...@@ -127,16 +127,16 @@ init script: ...@@ -127,16 +127,16 @@ init script:
is_colorless := filter_rule(match: "^colorless") + {input != ""}; is_colorless := filter_rule(match: "^colorless") + {input != ""};
is_artifact := filter_rule(match: "^artifact") + {input != ""}; is_artifact := filter_rule(match: "^artifact") + {input != ""};
sort_index := { sort_index := {
if card.card_color=="white" then "A" if card.card_color=="white" then "A"
else if card.card_color=="blue" then "B" else if card.card_color=="blue" then "B"
else if card.card_color=="black" then "C" else if card.card_color=="black" then "C"
else if card.card_color=="red" then "D" else if card.card_color=="red" then "D"
else if card.card_color=="green" then "E" else if card.card_color=="green" then "E"
else if is_multicolor(card.card_color) then "F" else if is_multicolor(card.card_color) then "F"
else if is_hybrid (card.card_color) then "G" else if is_hybrid (card.card_color) then "G"
else if is_colorless (card.card_color) or is_artifact (card.card_color) then "H" else if is_colorless (card.card_color) or is_artifact (card.card_color) then "I"
else if card.super_type!="Basic Land" then "I" else if card.rarity!="basic land" then "J"
else "J" else "K"
}; };
# The color of a card # The color of a card
...@@ -528,6 +528,43 @@ card field: ...@@ -528,6 +528,43 @@ card field:
choice: none choice: none
choice: tombstone choice: tombstone
description: Symbol for this card (tombstone) description: Symbol for this card (tombstone)
#for use in futureshifts
card field:
type: choice
name: type symbol
choice: none
choice: creature
choice: enchantment
choice: sorcery
choice: instant
choice: artifact
choice: land
choice: multitype
description: Symbol for the type of this card (claw marks, chalice, lightning bolt)
# Part of Name box for new token template
card field:
type: choice
name: name box
choice: black
editable: false
save value: false
show statistics: false
# Part of Name box for new token template
card field:
type: choice
name: name box left
choice: black
editable: false
save value: false
show statistics: false
# Part of Name box for new token template
card field:
type: choice
name: name box right
choice: black
editable: false
save value: false
show statistics: false
############################# Image ############################# Image
card field: card field:
...@@ -570,7 +607,6 @@ card field: ...@@ -570,7 +607,6 @@ card field:
name: type image name: type image
include file: magic-blends.mse-include/card-colors include file: magic-blends.mse-include/card-colors
script: card.card_color script: card.card_color
editable: false
card field: card field:
type: choice type: choice
name: rarity name: rarity
...@@ -612,7 +648,6 @@ card field: ...@@ -612,7 +648,6 @@ card field:
name: textbox name: textbox
include file: magic-blends.mse-include/card-colors include file: magic-blends.mse-include/card-colors
script: card.card_color script: card.card_color
editable: false
save value: false save value: false
show statistics: false show statistics: false
card field: card field:
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment