mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-14 09:48:02 +00:00
Fix migrateupcoming script and remove scripted reprints
This commit is contained in:
@@ -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.)
|
|
||||||
@@ -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.
|
|
||||||
@@ -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.
|
|
||||||
@@ -12,6 +12,6 @@ for dirName, subdirList, fileList in os.walk(upcoming):
|
|||||||
newFile = os.path.join(cardsfolder, filename[0], filename)
|
newFile = os.path.join(cardsfolder, filename[0], filename)
|
||||||
|
|
||||||
if os.path.exists(newFile):
|
if os.path.exists(newFile):
|
||||||
subprocess.call('git rm %s' % (newFile), shell=True)
|
subprocess.call('git rm %s' % (curLocation), shell=True)
|
||||||
else:
|
else:
|
||||||
subprocess.call('git mv %s %s' % (curLocation, newFile), shell=True)
|
subprocess.call('git mv %s %s' % (curLocation, newFile), shell=True)
|
||||||
Reference in New Issue
Block a user