mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
4a64c97d62
Added first version of horizontal cycle to magic.mse-game/add_cards_scripts. Should be expanded upon when dialogs are done. Altered magic.mse-game/packs to give illusion of handling mythic rares by including in rare pack items. Tweaked text size on magic-new-token. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1296 0fc631ac-6414-0410-93d0-97cfa31319b6
73 lines
1.6 KiB
Plaintext
73 lines
1.6 KiB
Plaintext
|
|
############################################################## Card pack items
|
|
|
|
pack item:
|
|
name: common
|
|
filter: card.rarity == "common" and card.shape != "token" and card.shape != "rulestip"
|
|
pack item:
|
|
name: uncommon
|
|
filter: card.rarity == "uncommon" and card.shape != "token" and card.shape != "rulestip"
|
|
pack item:
|
|
name: rare
|
|
filter: contains(card.rarity, match: "rare") and card.shape != "token" and card.shape != "rulestip"
|
|
pack item:
|
|
name: special
|
|
filter: card.rarity == "special" and card.shape != "token" and card.shape != "rulestip"
|
|
pack item:
|
|
name: basic land
|
|
filter: card.rarity == "basic land" and card.shape != "token" and card.shape != "rulestip"
|
|
pack item:
|
|
name: token / rulestip
|
|
filter: card.shape == "token" or card.shape == "rulestip"
|
|
############################################################## Card packs
|
|
|
|
pack type:
|
|
name: tournament pack
|
|
item:
|
|
name: rare
|
|
amount: 3
|
|
item:
|
|
name: uncommon
|
|
amount: 9
|
|
item:
|
|
name: common
|
|
amount: 33
|
|
item:
|
|
name: basic land
|
|
amount: 30
|
|
type: cyclic
|
|
item:
|
|
name: token / rulestip
|
|
pack type:
|
|
name: booster pack
|
|
item:
|
|
name: rare
|
|
amount: 1
|
|
item:
|
|
name: uncommon
|
|
amount: 3
|
|
item:
|
|
name: common
|
|
amount: 11
|
|
item:
|
|
name: token / rulestip
|
|
pack type:
|
|
name: additional common
|
|
item:
|
|
name: common
|
|
pack type:
|
|
name: additional uncommon
|
|
item:
|
|
name: uncommon
|
|
pack type:
|
|
name: additional rare
|
|
item:
|
|
name: rare
|
|
pack type:
|
|
name: additional special
|
|
item:
|
|
name: special
|
|
pack type:
|
|
name: additional token / rulestip
|
|
item:
|
|
name: token / rulestip |