[required] Add orange field
This commit is contained in:
@@ -846,6 +846,7 @@ languages := [
|
|||||||
is_black : match@(match: "(?i)black")
|
is_black : match@(match: "(?i)black")
|
||||||
is_red : match@(match: "(?i)red")
|
is_red : match@(match: "(?i)red")
|
||||||
is_green : match@(match: "(?i)green")
|
is_green : match@(match: "(?i)green")
|
||||||
|
is_orange : match@(match: "(?i)orange")
|
||||||
is_colorless : match@(match: "(?i)colorless")
|
is_colorless : match@(match: "(?i)colorless")
|
||||||
|
|
||||||
is_cda_colorless : match@(match: "(?i)is colorless")
|
is_cda_colorless : match@(match: "(?i)is colorless")
|
||||||
|
|||||||
@@ -1102,7 +1102,8 @@ primary_card_color := {
|
|||||||
black := chosen(choice:"black")
|
black := chosen(choice:"black")
|
||||||
red := chosen(choice:"red")
|
red := chosen(choice:"red")
|
||||||
green := chosen(choice:"green")
|
green := chosen(choice:"green")
|
||||||
multi_color := count_chosen(choices:"white, blue, black, red, green")
|
orange := chosen(choice:"orange")
|
||||||
|
multi_color := count_chosen(choices:"white, blue, black, red, green, orange")
|
||||||
if land then "land"
|
if land then "land"
|
||||||
else if multi then "multicolor"
|
else if multi then "multicolor"
|
||||||
else if multi_color == 2 and chosen(choice:"artifact") then "hybrid" #### hybrid artifacts would show as their first color
|
else if multi_color == 2 and chosen(choice:"artifact") then "hybrid" #### hybrid artifacts would show as their first color
|
||||||
@@ -1133,7 +1134,8 @@ sparker_card_color := {
|
|||||||
black := chosen(choice:"black")
|
black := chosen(choice:"black")
|
||||||
red := chosen(choice:"red")
|
red := chosen(choice:"red")
|
||||||
green := chosen(choice:"green")
|
green := chosen(choice:"green")
|
||||||
multi_color := count_chosen(choices:"white, blue, black, red, green")
|
orange := chosen(choice:"orange")
|
||||||
|
multi_color := count_chosen(choices:"white, blue, black, red, green, orange")
|
||||||
if land then "colorless"
|
if land then "colorless"
|
||||||
else if multi then "multicolor"
|
else if multi then "multicolor"
|
||||||
else if multi_color >= 2 then "multicolor"
|
else if multi_color >= 2 then "multicolor"
|
||||||
|
|||||||
@@ -235,7 +235,8 @@ face_color_category_statistic :=
|
|||||||
black := chosen(choice:"black")
|
black := chosen(choice:"black")
|
||||||
red := chosen(choice:"red")
|
red := chosen(choice:"red")
|
||||||
green := chosen(choice:"green")
|
green := chosen(choice:"green")
|
||||||
multi_color := count_chosen(choices:"white, blue, black, red, green")
|
orange := chosen(choice:"orange")
|
||||||
|
multi_color := count_chosen(choices:"white, blue, black, red, green, orange")
|
||||||
if land then all_en_space_statistic(lang_setting("land"))
|
if land then all_en_space_statistic(lang_setting("land"))
|
||||||
else if multi then all_en_space_statistic(lang_setting("multicolor"))
|
else if multi then all_en_space_statistic(lang_setting("multicolor"))
|
||||||
else if multi_color == 2
|
else if multi_color == 2
|
||||||
|
|||||||
Reference in New Issue
Block a user