mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
- Fixed Xantid Swarm
This commit is contained in:
@@ -186,13 +186,13 @@ while inputName != 'quit' :
|
|||||||
if text.find("When CARDNAME enters the battlefield") != -1 :
|
if text.find("When CARDNAME enters the battlefield") != -1 :
|
||||||
print "\n"+text
|
print "\n"+text
|
||||||
print "<Trigger Script Start>"
|
print "<Trigger Script Start>"
|
||||||
print 'T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Creature.Self | Execute$ <TriggerFunc> | TriggerDescription$ '+text
|
print 'T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ <TriggerFunc> | TriggerDescription$ '+text
|
||||||
print 'SVar:<TriggerFunc>:AB$ <Added Triggered Ability HERE>'
|
print 'SVar:<TriggerFunc>:AB$ <Added Triggered Ability HERE>'
|
||||||
print "<Trigger Script End>\n"
|
print "<Trigger Script End>\n"
|
||||||
elif text.find("When CARDNAME leaves the battlefield") != -1 :
|
elif text.find("When CARDNAME leaves the battlefield") != -1 :
|
||||||
print "\n"+text
|
print "\n"+text
|
||||||
print "<Trigger Script Start>"
|
print "<Trigger Script Start>"
|
||||||
print 'T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Any | ValidCard$ Creature.Self | Execute$ <TriggerFunc> | TriggerDescription$ '+text
|
print 'T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Any | ValidCard$ Card.Self | Execute$ <TriggerFunc> | TriggerDescription$ '+text
|
||||||
print 'SVar:<TriggerFunc>:AB$ <Added Triggered Ability HERE>'
|
print 'SVar:<TriggerFunc>:AB$ <Added Triggered Ability HERE>'
|
||||||
print "<Trigger Script End>\n"
|
print "<Trigger Script End>\n"
|
||||||
elif text.find("Unleash") != -1 :
|
elif text.find("Unleash") != -1 :
|
||||||
|
|||||||
@@ -4,8 +4,9 @@ Types:Creature Insect
|
|||||||
PT:0/1
|
PT:0/1
|
||||||
K:Flying
|
K:Flying
|
||||||
T:Mode$ Attacks | ValidCard$ Card.Self | TriggerZones$ Battlefield | Execute$ TrigEffect | TriggerDescription$ When CARDNAME attacks, defending player can't cast spells this turn.
|
T:Mode$ Attacks | ValidCard$ Card.Self | TriggerZones$ Battlefield | Execute$ TrigEffect | TriggerDescription$ When CARDNAME attacks, defending player can't cast spells this turn.
|
||||||
SVar:TrigEffect:AB$ Effect | Cost$ 0 | Name$ Xantid Swarm Effect | StaticAbilities$ CantBeCast
|
SVar:TrigEffect:AB$ Effect | Cost$ 0 | Name$ Xantid Swarm Effect | RememberObjects$ DefendingPlayer | StaticAbilities$ CantBeCast | SubAbility$ DBCleanup
|
||||||
SVar:CantBeCast:Mode$ CantBeCast | EffectZone$ Command | ValidCard$ Card | Caster$ DefendingPlayer | Description$ Defending player can't cast spells.
|
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
|
||||||
|
SVar:CantBeCast:Mode$ CantBeCast | EffectZone$ Command | ValidCard$ Card | Caster$ Player.IsRemembered | Description$ Defending player can't cast spells.
|
||||||
SVar:RemRandomDeck:True
|
SVar:RemRandomDeck:True
|
||||||
SVar:HasAttackEffect:TRUE
|
SVar:HasAttackEffect:TRUE
|
||||||
SVar:Rarity:Rare
|
SVar:Rarity:Rare
|
||||||
|
|||||||
Reference in New Issue
Block a user