Fix migrateupcoming script and remove scripted reprints

This commit is contained in:
tehdiplomat
2018-09-29 14:06:29 -04:00
parent 17062eecdb
commit 5f5bcc35ad
4 changed files with 1 additions and 20 deletions

View File

@@ -1,6 +0,0 @@
Name:Hitchclaw Recluse
ManaCost:2 G
Types:Creature Spider
PT:1/4
K:Reach
Oracle:Reach (This creature can block creatures with flying.)

View File

@@ -1,7 +0,0 @@
Name:Ironshell Beetle
ManaCost:1 G
Types:Creature Insect
PT:1/1
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigPut | TriggerDescription$ When CARDNAME enters the battlefield, put a +1/+1 counter on target creature.
SVar:TrigPut:DB$PutCounter | ValidTgts$ Creature | TgtPrompt$ Select target creature | CounterType$ P1P1 | CounterNum$ 1
Oracle:When Ironshell Beetle enters the battlefield, put a +1/+1 counter on target creature.

View File

@@ -1,6 +0,0 @@
Name:Might of the Masses
ManaCost:G
Types:Instant
A:SP$ Pump | Cost$ G | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumAtt$ +X | NumDef$ +X | References$ X | SpellDescription$ Target creature gets +1/+1 until end of turn for each creature you control.
SVar:X:Count$TypeYouCtrl.Creature
Oracle:Target creature gets +1/+1 until end of turn for each creature you control.

View File

@@ -12,6 +12,6 @@ for dirName, subdirList, fileList in os.walk(upcoming):
newFile = os.path.join(cardsfolder, filename[0], filename)
if os.path.exists(newFile):
subprocess.call('git rm %s' % (newFile), shell=True)
subprocess.call('git rm %s' % (curLocation), shell=True)
else:
subprocess.call('git mv %s %s' % (curLocation, newFile), shell=True)