mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-11 13:17:00 -04:00
Improved blends for pt-boxes.
Updated creature type lists in accordance w/ Oracle update. Shrank textbox font size for magic-future. Fixed new "colored multicolor land name" option in futureshifts. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@825 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
@@ -5,7 +5,7 @@ full name: Futureshift Textless
|
||||
icon: card-sample.png
|
||||
position hint: 051
|
||||
|
||||
version: 2008-01-12
|
||||
version: 2008-01-20
|
||||
depends on:
|
||||
package: magic.mse-game
|
||||
version: 2007-09-23
|
||||
@@ -45,6 +45,12 @@ init script:
|
||||
dark: land_template("c"),
|
||||
light: base,
|
||||
)
|
||||
else if land and multi and mask_multi_land_with_color() then
|
||||
masked_blend(
|
||||
mask: "hybrid_blend_{type}.png",
|
||||
dark: base,
|
||||
light: land_template("m"),
|
||||
)
|
||||
else if multi then
|
||||
masked_blend(
|
||||
mask: "multicolor_blend_{type}.png",
|
||||
@@ -92,6 +98,7 @@ init script:
|
||||
else "white"
|
||||
}
|
||||
typesymbol_color:= { if contains(card.card_color, match:"artifact") then "black"
|
||||
else if contains(card.card_color, match:"land") and contains(card.card_color, match:"multicolor") and styling.colored_multicolor_land_name then "black"
|
||||
else if contains(card.card_color, match:"multicolor") then (
|
||||
if card.card_color=="multicolor" then "black"
|
||||
else if not contains(card.card_color, match:"white") then "white"
|
||||
@@ -195,6 +202,10 @@ card style:
|
||||
contains(card.card_color, match:"radial") or
|
||||
contains(card.card_color, match:"vertical") and
|
||||
not contains(card.card_color, match:"multicolor") then rgb(0,0,0)
|
||||
else if contains(card.card_color, match:"land") and
|
||||
contains(card.card_color, match:"multicolor") and
|
||||
contains(card.card_color, match:"black") and
|
||||
styling.colored_multicolor_land_name then rgb(255,255,255)
|
||||
else if contains(card.card_color, match:"land") and
|
||||
contains(card.card_color, match:"multicolor") then rgb(0,0,0)
|
||||
else if styling.grey_hybrid_name and contains(card.card_color, match:"hybrid") then rgb(0,0,0)
|
||||
@@ -273,6 +284,10 @@ card style:
|
||||
contains(card.card_color, match:"radial") or
|
||||
contains(card.card_color, match:"vertical") and
|
||||
not contains(card.card_color, match:"multicolor") then rgb(0,0,0)
|
||||
else if contains(card.card_color, match:"land") and
|
||||
contains(card.card_color, match:"multicolor") and
|
||||
contains(card.card_color, match:"black") and
|
||||
styling.colored_multicolor_land_name then rgb(255,255,255)
|
||||
else if contains(card.card_color, match:"land") and
|
||||
contains(card.card_color, match:"multicolor") then rgb(0,0,0)
|
||||
else if styling.grey_hybrid_name and contains(card.card_color, match:"hybrid") then rgb(0,0,0)
|
||||
|
||||
Reference in New Issue
Block a user