mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-11 13:17:00 -04:00
Improved pack structure for Magic to deal with tokens/rulestips.
Added rudimentary pack structures for Vanguard, VS System, and Yu-Gi-Oh. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1104 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
@@ -5,7 +5,7 @@ installer group: magic/game files
|
||||
icon: card-back.png
|
||||
position hint: 01
|
||||
|
||||
version: 2008-08-06
|
||||
version: 2008-08-08
|
||||
depends on: magic-blends.mse-include 2007-09-23
|
||||
depends on: magic-watermarks.mse-include 2007-09-23
|
||||
|
||||
|
||||
@@ -3,20 +3,22 @@
|
||||
|
||||
pack item:
|
||||
name: common
|
||||
filter: card.rarity == "common"
|
||||
filter: card.rarity == "common" and card.shape != "token" and card.shape != "rulestip"
|
||||
pack item:
|
||||
name: uncommon
|
||||
filter: card.rarity == "uncommon"
|
||||
filter: card.rarity == "uncommon" and card.shape != "token" and card.shape != "rulestip"
|
||||
pack item:
|
||||
name: rare
|
||||
filter: card.rarity == "rare"
|
||||
filter: card.rarity == "rare" and card.shape != "token" and card.shape != "rulestip"
|
||||
pack item:
|
||||
name: special
|
||||
filter: card.rarity == "special"
|
||||
filter: card.rarity == "special" and card.shape != "token" and card.shape != "rulestip"
|
||||
pack item:
|
||||
name: basic land
|
||||
filter: card.rarity == "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:
|
||||
@@ -34,6 +36,8 @@ pack type:
|
||||
name: basic land
|
||||
amount: 30
|
||||
type: cyclic
|
||||
item:
|
||||
name: token / rulestip
|
||||
pack type:
|
||||
name: booster pack
|
||||
item:
|
||||
@@ -45,6 +49,8 @@ pack type:
|
||||
item:
|
||||
name: common
|
||||
amount: 11
|
||||
item:
|
||||
name: token / rulestip
|
||||
pack type:
|
||||
name: additional common
|
||||
item:
|
||||
@@ -61,3 +67,7 @@ pack type:
|
||||
name: additional special
|
||||
item:
|
||||
name: special
|
||||
pack type:
|
||||
name: additional token / rulestip
|
||||
item:
|
||||
name: token / rulestip
|
||||
Reference in New Issue
Block a user