Files
MagicSetEditor2/data/magic-blends.mse-include/card-textboxes
T
pichoro 0fd8c42a8d Lots of font size alterations.
Fixed a problem with Magic textless that prevented pt box display.
Added most (but not all) of overlay hybrid scripts.

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@413 0fc631ac-6414-0410-93d0-97cfa31319b6
2007-06-07 02:53:39 +00:00

145 lines
11 KiB
Plaintext

# Card textboxes, most are generated using the blend-scripts
# Requires
# include file: custommagic-blends.mse-include/blend-scripts
# In the init script of the style
choice images:
white : script: textbox_template("w")
blue : script: textbox_template("u")
black : script: textbox_template("b")
red : script: textbox_template("r")
green : script: textbox_template("g")
colorless : script: textbox_template("c")
artifact : script: textbox_template("a")
multicolor : script: textbox_template("m")
multicolor 2 color white / blue : script: multi_hybrid_textbox(card_hybrid_2_textbox("wu"))
multicolor 2 color blue / black : script: multi_hybrid_textbox(card_hybrid_2_textbox("ub"))
multicolor 2 color black / red : script: multi_hybrid_textbox(card_hybrid_2_textbox("br"))
multicolor 2 color red / green : script: multi_hybrid_textbox(card_hybrid_2_textbox("rg"))
multicolor 2 color green / white : script: multi_hybrid_textbox(card_hybrid_2_textbox("gw"))
multicolor 2 color white / black : script: multi_hybrid_textbox(card_hybrid_2_textbox("wb"))
multicolor 2 color blue / red : script: multi_hybrid_textbox(card_hybrid_2_textbox("ur"))
multicolor 2 color black / green : script: multi_hybrid_textbox(card_hybrid_2_textbox("bg"))
multicolor 2 color red / white : script: multi_hybrid_textbox(card_hybrid_2_textbox("rw"))
multicolor 2 color green / blue : script: multi_hybrid_textbox(card_hybrid_2_textbox("gu"))
multicolor 3 color white / blue / black : script: multi_hybrid_textbox(card_hybrid_3_textbox("wub"))
multicolor 3 color blue / black / red : script: multi_hybrid_textbox(card_hybrid_3_textbox("ubr"))
multicolor 3 color black / red / green : script: multi_hybrid_textbox(card_hybrid_3_textbox("brg"))
multicolor 3 color red / green / white : script: multi_hybrid_textbox(card_hybrid_3_textbox("rgw"))
multicolor 3 color green / white / blue : script: multi_hybrid_textbox(card_hybrid_3_textbox("gwu"))
multicolor 3 color white / black / red : script: multi_hybrid_textbox(card_hybrid_3_textbox("wbr"))
multicolor 3 color blue / red / green : script: multi_hybrid_textbox(card_hybrid_3_textbox("urg"))
multicolor 3 color black / green / white : script: multi_hybrid_textbox(card_hybrid_3_textbox("bgw"))
multicolor 3 color red / white / blue : script: multi_hybrid_textbox(card_hybrid_3_textbox("rwu"))
multicolor 3 color green / blue / black : script: multi_hybrid_textbox(card_hybrid_3_textbox("gub"))
multicolor 4 color white / blue / black / red : script: multi_hybrid_textbox(card_hybrid_4_textbox("wubr"))
multicolor 4 color blue / black / red / green : script: multi_hybrid_textbox(card_hybrid_4_textbox("ubrg"))
multicolor 4 color black / red / green / white : script: multi_hybrid_textbox(card_hybrid_4_textbox("brgw"))
multicolor 4 color red / green / white / blue : script: multi_hybrid_textbox(card_hybrid_4_textbox("rgwu"))
multicolor 4 color green / white / blue / black : script: multi_hybrid_textbox(card_hybrid_4_textbox("gwub"))
multicolor 5 color white / blue / black / red / green : script: multi_hybrid_textbox(card_hybrid_5_textbox("wubrg"))
multicolor 5 color horizontal white / blue / black / red / green : script: multi_hybrid_textbox(card_hybrid_5h_textbox("wubrg"))
land : script: textboxland_template("")
land 1 color white : script: textboxland_template("w")
land 1 color blue : script: textboxland_template("u")
land 1 color black : script: textboxland_template("b")
land 1 color red : script: textboxland_template("r")
land 1 color green : script: textboxland_template("g")
land 1 color multicolor : script: textboxland_template("m")
land 2 color white / blue : script: land_hybrid_2_textbox("wu")
land 2 color blue / black : script: land_hybrid_2_textbox("ub")
land 2 color black / red : script: land_hybrid_2_textbox("br")
land 2 color red / green : script: land_hybrid_2_textbox("rg")
land 2 color green / white : script: land_hybrid_2_textbox("gw")
land 2 color white / black : script: land_hybrid_2_textbox("wb")
land 2 color blue / red : script: land_hybrid_2_textbox("ur")
land 2 color black / green : script: land_hybrid_2_textbox("bg")
land 2 color red / white : script: land_hybrid_2_textbox("rw")
land 2 color green / blue : script: land_hybrid_2_textbox("gu")
hybrid 2 color white / blue : script: card_hybrid_2_textbox("wu")
hybrid 2 color blue / black : script: card_hybrid_2_textbox("ub")
hybrid 2 color black / red : script: card_hybrid_2_textbox("br")
hybrid 2 color red / green : script: card_hybrid_2_textbox("rg")
hybrid 2 color green / white : script: card_hybrid_2_textbox("gw")
hybrid 2 color white / black : script: card_hybrid_2_textbox("wb")
hybrid 2 color blue / red : script: card_hybrid_2_textbox("ur")
hybrid 2 color black / green : script: card_hybrid_2_textbox("bg")
hybrid 2 color red / white : script: card_hybrid_2_textbox("rw")
hybrid 2 color green / blue : script: card_hybrid_2_textbox("gu")
hybrid 2 color artifact / white : script: card_hybrid_2_textbox("aw")
hybrid 2 color artifact / blue : script: card_hybrid_2_textbox("au")
hybrid 2 color artifact / black : script: card_hybrid_2_textbox("ab")
hybrid 2 color artifact / red : script: card_hybrid_2_textbox("ar")
hybrid 2 color artifact / green : script: card_hybrid_2_textbox("ag")
hybrid 2 color overlay white / blue : script: card_hybrid_overlay_textbox("wu")
hybrid 2 color overlay blue / black : script: card_hybrid_overlay_textbox("ub")
hybrid 2 color overlay black / red : script: card_hybrid_overlay_textbox("br")
hybrid 2 color overlay red / green : script: card_hybrid_overlay_textbox("rg")
hybrid 2 color overlay green / white : script: card_hybrid_overlay_textbox("gw")
hybrid 2 color overlay white / black : script: card_hybrid_overlay_textbox("wb")
hybrid 2 color overlay blue / red : script: card_hybrid_overlay_textbox("ur")
hybrid 2 color overlay black / green : script: card_hybrid_overlay_textbox("bg")
hybrid 2 color overlay red / white : script: card_hybrid_overlay_textbox("rw")
hybrid 2 color overlay green / blue : script: card_hybrid_overlay_textbox("gu")
hybrid 3 color white / blue / black : script: card_hybrid_3_textbox("wub")
hybrid 3 color blue / black / red : script: card_hybrid_3_textbox("ubr")
hybrid 3 color black / red / green : script: card_hybrid_3_textbox("brg")
hybrid 3 color red / green / white : script: card_hybrid_3_textbox("rgw")
hybrid 3 color green / white / blue : script: card_hybrid_3_textbox("gwu")
hybrid 3 color white / black / red : script: card_hybrid_3_textbox("wbr")
hybrid 3 color blue / red / green : script: card_hybrid_3_textbox("urg")
hybrid 3 color black / green / white : script: card_hybrid_3_textbox("bgw")
hybrid 3 color red / white / blue : script: card_hybrid_3_textbox("rwu")
hybrid 3 color green / blue / black : script: card_hybrid_3_textbox("gub")
hybrid 3 color horizontal white / blue / black : script: card_hybrid_3h_textbox("wub")
hybrid 3 color horizontal blue / black / red : script: card_hybrid_3h_textbox("ubr")
hybrid 3 color horizontal black / red / green : script: card_hybrid_3h_textbox("brg")
hybrid 3 color horizontal red / green / white : script: card_hybrid_3h_textbox("rgw")
hybrid 3 color horizontal green / white / blue : script: card_hybrid_3h_textbox("gwu")
hybrid 3 color horizontal white / black / red : script: card_hybrid_3h_textbox("wbr")
hybrid 3 color horizontal blue / red / green : script: card_hybrid_3h_textbox("urg")
hybrid 3 color horizontal black / green / white : script: card_hybrid_3h_textbox("bgw")
hybrid 3 color horizontal red / white / blue : script: card_hybrid_3h_textbox("rwu")
hybrid 3 color horizontal green / blue / black : script: card_hybrid_3h_textbox("gub")
hybrid 4 color white / blue / black / red : script: card_hybrid_4_textbox("wubr")
hybrid 4 color blue / black / red / green : script: card_hybrid_4_textbox("ubrg")
hybrid 4 color black / red / green / white : script: card_hybrid_4_textbox("brgw")
hybrid 4 color red / green / white / blue : script: card_hybrid_4_textbox("rgwu")
hybrid 4 color green / white / blue / black : script: card_hybrid_4_textbox("gwub")
hybrid 4 color horizontal white / blue / black / red : script: card_hybrid_4h_textbox("wubr")
hybrid 4 color horizontal blue / black / red / green : script: card_hybrid_4h_textbox("ubrg")
hybrid 4 color horizontal black / red / green / white : script: card_hybrid_4h_textbox("brgw")
hybrid 4 color horizontal red / green / white / blue : script: card_hybrid_4h_textbox("rgwu")
hybrid 4 color horizontal green / white / blue / black : script: card_hybrid_4h_textbox("gwub")
hybrid 5 color white / blue / black / red / green : script: card_hybrid_5_textbox("wubrg")
hybrid 5 color horizontal white / blue / black / red / green : script: card_hybrid_5h_textbox("wubrg")
hybrid vertical white / blue : script: card_hybrid_2v_textbox("wu")
hybrid vertical white / black : script: card_hybrid_2v_textbox("wb")
hybrid vertical white / red : script: card_hybrid_2v_textbox("wr")
hybrid vertical white / green : script: card_hybrid_2v_textbox("wg")
hybrid vertical blue / white : script: card_hybrid_2v_textbox("uw")
hybrid vertical blue / black : script: card_hybrid_2v_textbox("ub")
hybrid vertical blue / red : script: card_hybrid_2v_textbox("ur")
hybrid vertical blue / green : script: card_hybrid_2v_textbox("ug")
hybrid vertical black / white : script: card_hybrid_2v_textbox("bw")
hybrid vertical black / blue : script: card_hybrid_2v_textbox("bu")
hybrid vertical black / red : script: card_hybrid_2v_textbox("br")
hybrid vertical black / green : script: card_hybrid_2v_textbox("bg")
hybrid vertical red / white : script: card_hybrid_2v_textbox("rw")
hybrid vertical red / blue : script: card_hybrid_2v_textbox("ru")
hybrid vertical red / black : script: card_hybrid_2v_textbox("rb")
hybrid vertical red / green : script: card_hybrid_2v_textbox("rg")
hybrid vertical green / white : script: card_hybrid_2v_textbox("gw")
hybrid vertical green / blue : script: card_hybrid_2v_textbox("gu")
hybrid vertical green / red : script: card_hybrid_2v_textbox("gr")
hybrid vertical green / black : script: card_hybrid_2v_textbox("gb")
hybrid vertical artifact / white : script: card_hybrid_2v_textbox("aw")
hybrid vertical artifact / blue : script: card_hybrid_2v_textbox("au")
hybrid vertical artifact / black : script: card_hybrid_2v_textbox("ab")
hybrid vertical artifact / red : script: card_hybrid_2v_textbox("ar")
hybrid vertical artifact / green : script: card_hybrid_2v_textbox("ag")
hybrid vertical white / artifact : script: card_hybrid_2v_textbox("wa")
hybrid vertical blue / artifact : script: card_hybrid_2v_textbox("ua")
hybrid vertical black / artifact : script: card_hybrid_2v_textbox("ba")
hybrid vertical red / artifact : script: card_hybrid_2v_textbox("ra")
hybrid vertical green / artifact : script: card_hybrid_2v_textbox("ga")