mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- Removed the hardcoded entry of Ixidron and fixed the script.
This commit is contained in:
@@ -3,8 +3,8 @@ ManaCost:3 U U
|
|||||||
Types:Creature Illusion
|
Types:Creature Illusion
|
||||||
Text:no text
|
Text:no text
|
||||||
PT:*/*
|
PT:*/*
|
||||||
T:Mode$ChangesZone | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigTurnFaceDown | TriggerDescription$ As CARDNAME enters the battlefield, turn all other nontoken creatures face down. (They're 2/2 creatures.)
|
T:Mode$ChangesZone | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigTurnFaceDown | Static$ True | TriggerDescription$ As CARDNAME enters the battlefield, turn all other nontoken creatures face down. (They're 2/2 creatures.)
|
||||||
SVar:TrigTurnFaceDown:AB$SetStateAll | Cost$ 0 | ValidCards$ Creature.Other | NewState$ FaceDown
|
SVar:TrigTurnFaceDown:AB$SetStateAll | Cost$ 0 | ValidCards$ Creature.nonToken+Other | NewState$ FaceDown
|
||||||
S:Mode$ Continuous | EffectZone$ All | CharacteristicDefining$ True | SetPower$ X | SetToughness$ X | Description$ CARDNAME's power and toughness are each equal to the number of face-down creatures on the battlefield.
|
S:Mode$ Continuous | EffectZone$ All | CharacteristicDefining$ True | SetPower$ X | SetToughness$ X | Description$ CARDNAME's power and toughness are each equal to the number of face-down creatures on the battlefield.
|
||||||
SVar:X:Count$Valid Creature.faceDown
|
SVar:X:Count$Valid Creature.faceDown
|
||||||
SVar:Rarity:Rare
|
SVar:Rarity:Rare
|
||||||
|
|||||||
@@ -2698,7 +2698,7 @@ public class CardFactoryCreatures {
|
|||||||
} // *************** END ************ END **************************
|
} // *************** END ************ END **************************
|
||||||
|
|
||||||
// *************** START *********** START **************************
|
// *************** START *********** START **************************
|
||||||
else if (cardName.equals("Ixidron")) {
|
/*else if (cardName.equals("Ixidron")) {
|
||||||
final Trigger tfdTrigger = forge.card.trigger.TriggerHandler
|
final Trigger tfdTrigger = forge.card.trigger.TriggerHandler
|
||||||
.parseTrigger(
|
.parseTrigger(
|
||||||
"Mode$ ChangesZone | Destination$ Battlefield | ValidCard$ Card.Self | Static$ True | TriggerDescription$ As CARDNAME enters the battlefield, turn all other nontoken creatures face down. (They're 2/2 creatures.)",
|
"Mode$ ChangesZone | Destination$ Battlefield | ValidCard$ Card.Self | Static$ True | TriggerDescription$ As CARDNAME enters the battlefield, turn all other nontoken creatures face down. (They're 2/2 creatures.)",
|
||||||
@@ -2725,7 +2725,7 @@ public class CardFactoryCreatures {
|
|||||||
tfdTrigger.setOverridingAbility(triggeredAbility);
|
tfdTrigger.setOverridingAbility(triggeredAbility);
|
||||||
|
|
||||||
card.addTrigger(tfdTrigger);
|
card.addTrigger(tfdTrigger);
|
||||||
} // *************** END ************ END **************************
|
}*/ // *************** END ************ END **************************
|
||||||
|
|
||||||
// ***************************************************
|
// ***************************************************
|
||||||
// end of card specific code
|
// end of card specific code
|
||||||
|
|||||||
Reference in New Issue
Block a user