Fixed a problem with some land blends not auto-switching.

Fixed the B/R/G mana symbol.

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@350 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
pichoro
2007-05-13 05:56:54 +00:00
parent 4e66e54f35
commit cc036b94f3
4 changed files with 6 additions and 6 deletions
@@ -19,7 +19,7 @@ symbol:
code: B/G/W
image: mana_bgw.png
symbol:
code: G/B/R
code: B/R/G
image: mana_brg.png
symbol:
code: G/U/B
@@ -21,7 +21,7 @@ symbol:
image: mana_bgw.png
image font size: 145
symbol:
code: G/B/R
code: B/R/G
image: mana_brg.png
image font size: 145
symbol:
@@ -28,7 +28,7 @@ symbol:
image: mana_bgw.png
image font size: 145
symbol:
code: G/B/R
code: B/R/G
image: mana_brg.png
image font size: 145
symbol:
+3 -3
View File
@@ -110,12 +110,12 @@ init script:
else if colors = "UB" then "land 2 color blue / black"
else if colors = "BR" then "land 2 color black / red"
else if colors = "RG" then "land 2 color red / green"
else if colors = "WG" then "land 2 color green / white"
else if colors = "GW" then "land 2 color green / white"
else if colors = "WB" then "land 2 color white / black"
else if colors = "UR" then "land 2 color blue / red"
else if colors = "BG" then "land 2 color black / green"
else if colors = "WR" then "land 2 color red / white"
else if colors = "UG" then "land 2 color green / blue"
else if colors = "RW" then "land 2 color red / white"
else if colors = "GU" then "land 2 color green / blue"
else "land 1 color multicolor"
)
};