fix masterpiece counting
& pt-br instant
This commit is contained in:
@@ -789,11 +789,11 @@ set_filter := {
|
||||
else if is_masterpiece() and not token_shape(card.shape) then
|
||||
{ is_masterpiece() and not token_shape(card.shape) }
|
||||
else if set.sort_special_rarity != "separate numbering" then
|
||||
{ not is_unsorted() and not token_shape(card.shape) }
|
||||
{ not is_unsorted() and not token_shape(card.shape) and not is_masterpiece() }
|
||||
else if card.rarity == "special" then
|
||||
{ not is_unsorted() and not token_shape(card.shape) and card.rarity == "special" }
|
||||
{ not is_unsorted() and not token_shape(card.shape) and card.rarity == "special" and not is_masterpiece() }
|
||||
else
|
||||
{ not is_unsorted() and not token_shape(card.shape) and card.rarity != "special" }
|
||||
{ not is_unsorted() and not token_shape(card.shape) and card.rarity != "special" and not is_masterpiece() }
|
||||
}
|
||||
#### over-partition cards need to be counted during the card number count
|
||||
#### but need to be skipped during the card count count
|
||||
@@ -812,11 +812,11 @@ set_filter_under_partition := {
|
||||
else if is_masterpiece() and not token_shape(card.shape) then
|
||||
{ is_masterpiece() and not token_shape(card.shape) and not over_partition() }
|
||||
else if set.sort_special_rarity != "separate numbering" then
|
||||
{ not is_unsorted() and not token_shape(card.shape) and not over_partition() }
|
||||
{ not is_unsorted() and not token_shape(card.shape) and not over_partition() and not is_masterpiece() }
|
||||
else if card.rarity == "special" then
|
||||
{ not is_unsorted() and not token_shape(card.shape) and card.rarity == "special" and not over_partition() }
|
||||
{ not is_unsorted() and not token_shape(card.shape) and card.rarity == "special" and not over_partition() and not is_masterpiece() }
|
||||
else
|
||||
{ not is_unsorted() and not token_shape(card.shape) and card.rarity != "special" and not over_partition() }
|
||||
{ not is_unsorted() and not token_shape(card.shape) and card.rarity != "special" and not over_partition() and not is_masterpiece() }
|
||||
}
|
||||
|
||||
#### user configurable additions to the set totals
|
||||
|
||||
@@ -349,7 +349,7 @@ word list:
|
||||
word: Criatura Artefato
|
||||
word: Encantamento
|
||||
word: Criatura Encantamento
|
||||
word: Mágica Istantaneo
|
||||
word: Mágica Instantânea
|
||||
word: Feitiço
|
||||
word: Terreno
|
||||
word: Planeswalker
|
||||
|
||||
Reference in New Issue
Block a user