Added match_rule to replace filter_rule + {input!=""};

Default color for lands does not look at costs

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@354 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2007-05-13 16:05:59 +00:00
parent d2b4640bda
commit 45bd4acd07
2 changed files with 17 additions and 7 deletions
@@ -16,12 +16,14 @@ default_image := {
else if input == "red" then default_image_1("red.jpg")
else if input == "black" then default_image_1("black.jpg")
else if input == "green" then default_image_1("green.jpg")
else if input == "land" then default_image_2(image1:"colorless.jpg", image2:"artifact.jpg")
else if input == "land 1 color white" then default_image_2(image1:"colorless.jpg", image2:"white.jpg")
else if input == "land 1 color blue" then default_image_2(image1:"colorless.jpg", image2:"blue.jpg")
else if input == "land 1 color red" then default_image_2(image1:"colorless.jpg", image2:"red.jpg")
else if input == "land 1 color black" then default_image_2(image1:"colorless.jpg", image2:"black.jpg")
else if input == "land 1 color green" then default_image_2(image1:"colorless.jpg", image2:"green.jpg")
else if input == "land 1 color multicolor" then default_image_2(image1:"colorless.jpg", image2:"multicolor.jpg")
else if is_land() then default_image_2(image1:"colorless.jpg", image2:"multicolor.jpg")
else if input == "hybrid 2 color white / blue" then default_image_2(image1:"white.jpg", image2:"blue.jpg" )
else if input == "hybrid 2 color blue / black" then default_image_2(image1:"blue.jpg", image2:"black.jpg")
else if input == "hybrid 2 color black / red" then default_image_2(image1:"black.jpg", image2:"red.jpg" )