mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-12 21:47:00 -04:00
Separate card numbers for tokens
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1089 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
@@ -234,12 +234,20 @@ color_of_card := {
|
|||||||
}
|
}
|
||||||
|
|
||||||
rarity_sort := {
|
rarity_sort := {
|
||||||
if set.sort_special_rarity == "with the rest" or card.rarity != "special" then " " else "S"
|
if card.shape == "token" then "T"
|
||||||
|
else if set.sort_special_rarity == "with the rest" or card.rarity != "special" then " "
|
||||||
|
else "S"
|
||||||
}
|
}
|
||||||
set_filter := {
|
set_filter := {
|
||||||
if set.sort_special_rarity != "separate numbering" then nil
|
# TODO: what about rulestips?
|
||||||
else if card.rarity == "special" then { card.rarity == "special" }
|
if card.shape == "token" then
|
||||||
else { card.rarity != "special" }
|
{ card.shape == "token" }
|
||||||
|
else if set.sort_special_rarity != "separate numbering" then
|
||||||
|
{ card.shape != "token" and card.shape != "rulestip" }
|
||||||
|
else if card.rarity == "special" then
|
||||||
|
{ card.shape != "token" and card.shape != "rulestip" and card.rarity == "special" }
|
||||||
|
else
|
||||||
|
{ card.shape != "token" and card.shape != "rulestip" and card.rarity != "special" }
|
||||||
}
|
}
|
||||||
|
|
||||||
card_number := {
|
card_number := {
|
||||||
|
|||||||
Reference in New Issue
Block a user