mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
Merge branch 'master' into 'ai-parsing-variables'
# Conflicts: # forge-gui/res/cardsfolder/d/detection_tower.txt # forge-gui/res/cardsfolder/m/myr_superion.txt
This commit is contained in:
@@ -167,7 +167,20 @@ public class CopySpellAbilityEffect extends SpellAbilityEffect {
|
||||
"Select a spell to copy", ImmutableMap.of());
|
||||
chosenSA.setActivatingPlayer(controller);
|
||||
for (int i = 0; i < amount; i++) {
|
||||
copies.add(CardFactory.copySpellAbilityAndPossiblyHost(card, chosenSA.getHostCard(), chosenSA, true));
|
||||
SpellAbility copy = CardFactory.copySpellAbilityAndPossiblyHost(
|
||||
card, chosenSA.getHostCard(), chosenSA, true);
|
||||
|
||||
// extra case for Epic to remove the keyword and the last part of the SpellAbility
|
||||
if (sa.hasParam("Epic")) {
|
||||
copy.getHostCard().removeIntrinsicKeyword("Epic");
|
||||
SpellAbility sub = copy;
|
||||
while (sub.getSubAbility() != null) {
|
||||
sub = sub.getSubAbility();
|
||||
}
|
||||
sub.getParent().setSubAbility(null);
|
||||
}
|
||||
|
||||
copies.add(copy);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -2014,18 +2014,6 @@ public class CardFactoryUtil {
|
||||
inst.createTraits(card, true);
|
||||
}
|
||||
|
||||
// AddCost
|
||||
if (card.hasSVar("FullCost")) {
|
||||
String k[] = card.getSVar("FullCost").split(":");
|
||||
final SpellAbility sa1 = card.getFirstSpellAbility();
|
||||
if (sa1 != null && sa1.isSpell()) {
|
||||
sa1.setPayCosts(new Cost(k[0], sa1.isAbility()));
|
||||
if (k.length > 1) {
|
||||
sa1.getMapParams().put("AILogic", k[1]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// AltCost
|
||||
String altCost = card.getSVar("AltCost");
|
||||
if (StringUtils.isNotBlank(altCost)) {
|
||||
@@ -2034,7 +2022,6 @@ public class CardFactoryUtil {
|
||||
card.addSpellAbility(makeAltCostAbility(card, altCost, sa1));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private static ReplacementEffect createETBReplacement(final Card card, ReplacementLayer layer,
|
||||
@@ -3759,14 +3746,14 @@ public class CardFactoryUtil {
|
||||
// Epic does modify existing SA, and does not add new one
|
||||
|
||||
// Add the Epic effect as a subAbility
|
||||
String dbStr = "DB$ Effect | Triggers$ EpicTrigger | SVars$ EpicCopy | StaticAbilities$ EpicCantBeCast | Duration$ Permanent | Unique$ True";
|
||||
String dbStr = "DB$ Effect | Triggers$ EpicTrigger | SVars$ EpicCopy | StaticAbilities$ EpicCantBeCast | Duration$ Permanent";
|
||||
|
||||
final AbilitySub newSA = (AbilitySub) AbilityFactory.getAbility(dbStr.toString(), card);
|
||||
|
||||
card.setSVar("EpicCantBeCast", "Mode$ CantBeCast | ValidCard$ Card | Caster$ You | EffectZone$ Command | Description$ For the rest of the game, you can't cast spells.");
|
||||
card.setSVar("EpicTrigger", "Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | Execute$ EpicCopy | TriggerDescription$ "
|
||||
+ "At the beginning of each of your upkeeps, copy " + card.toString() + " except for its epic ability.");
|
||||
card.setSVar("EpicCopy", "DB$ CopySpellAbility | Defined$ EffectSource");
|
||||
card.setSVar("EpicCopy", "DB$ CopySpellAbility | Defined$ EffectSource | Epic$ True");
|
||||
|
||||
final SpellAbility origSA = card.getFirstSpellAbility();
|
||||
|
||||
|
||||
@@ -3,5 +3,5 @@ ManaCost:3 G G G
|
||||
Types:Creature Elephant
|
||||
K:Trample
|
||||
S:Mode$ Continuous | Affected$ Creature.Other+YouCtrl | AddKeyword$ Trample | Description$ Other creatures you control have trample.
|
||||
Oracle:Trample (This creature can deal excess combat damage to the player or planeswalker it’s attacking.)\nOther creatures you control have trample.
|
||||
Oracle:Trample (This creature can deal excess combat damage to the player or planeswalker it's attacking.)\nOther creatures you control have trample.
|
||||
PT:8/8
|
||||
@@ -4,7 +4,7 @@ Types:Legendary Creature Elder Dragon
|
||||
PT:3/5
|
||||
K:Flying
|
||||
K:Vigilance
|
||||
S:Mode$ Continuous | Affected$ Creature.withDefender+YouCtrl | AddHiddenKeyword$ CARDNAME assigns combat damage equal to its toughness rather than its power & CARDNAME can attack as though it didn't have defender. | Description$ Each creature you control assigns combat damage equal to its toughness rather than its power and can attack as though it didn’t have defender.
|
||||
S:Mode$ Continuous | Affected$ Creature.withDefender+YouCtrl | AddHiddenKeyword$ CARDNAME assigns combat damage equal to its toughness rather than its power & CARDNAME can attack as though it didn't have defender. | Description$ Each creature you control assigns combat damage equal to its toughness rather than its power and can attack as though it didn't have defender.
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Creature.withDefender+YouCtrl | TriggerZones$ Battlefield | Execute$ TrigDraw | TriggerDescription$ Whenever a creature with defender enters the battlefield under your control, draw a card.
|
||||
SVar:TrigDraw:DB$ Draw | Defined$ You | NumCards$ 1
|
||||
Oracle:Flying, vigilance\nWhenever a creature with defender enters the battlefield under your control, draw a card.\nEach creature you control with defender assigns combat damage equal to its toughness rather than its power and can attack as though it didn’t have defender.
|
||||
Oracle:Flying, vigilance\nWhenever a creature with defender enters the battlefield under your control, draw a card.\nEach creature you control with defender assigns combat damage equal to its toughness rather than its power and can attack as though it didn't have defender.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Name:Blessing of Belzenlok
|
||||
ManaCost:B
|
||||
Types:Instant
|
||||
A:SP$ Pump | Cost$ B | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumAtt$ +2 | NumDef$ +1 | SubAbility$ DBPump | SpellDescription$ Target creature gets +2/+1 until end of turn. If it’s legendary, it also gains lifelink until end of turn.
|
||||
A:SP$ Pump | Cost$ B | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumAtt$ +2 | NumDef$ +1 | SubAbility$ DBPump | SpellDescription$ Target creature gets +2/+1 until end of turn. If it's legendary, it also gains lifelink until end of turn.
|
||||
SVar:DBPump:DB$ Pump | Defined$ Targeted | KW$ Lifelink | ConditionCheckSVar$ X | ConditionSVarCompare$ GE1 | References$ X
|
||||
SVar:X:Targeted$Valid Legendary
|
||||
Oracle:Target creature gets +2/+1 until end of turn. If it's legendary, it also gains lifelink until end of turn.
|
||||
|
||||
@@ -6,4 +6,4 @@ K:Menace
|
||||
T:Mode$ Attacks | ValidCard$ Card.Self | Execute$ TrigPump | OptionalDecider$ You | TriggerDescription$ Whenever CARDNAME attacks, you may sacrifice another creature. If you do, CARDNAME gets +2/+2 until end of turn.
|
||||
SVar:TrigPump:AB$ Pump | Cost$ Sac<1/Creature.Other/another creature> | Defined$ Self | NumAtt$ +2 | NumDef$ +2 | SpellDescription$ CARDNAME gets +2/+2 until end of turn.
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/brawl-bash_ogre.jpg
|
||||
Oracle:Menace (This creature can’t be blocked except by two or more creatures.)\nWhenever Brawl-Bash Ogre attacks, you may sacrifice another creature. If you do, Brawl-Bash Ogre gets +2/+2 until end of turn.
|
||||
Oracle:Menace (This creature can't be blocked except by two or more creatures.)\nWhenever Brawl-Bash Ogre attacks, you may sacrifice another creature. If you do, Brawl-Bash Ogre gets +2/+2 until end of turn.
|
||||
@@ -2,8 +2,8 @@ Name:Caller of the Hunt
|
||||
ManaCost:2 G
|
||||
Types:Creature Human
|
||||
PT:*/*
|
||||
A:SP$ PermanentCreature | Cost$ 2 G ChooseCreatureType<1> | AILogic$ MostProminentOnBattlefield
|
||||
S:Mode$ Continuous | EffectZone$ All | CharacteristicDefining$ True | SetPower$ X | SetToughness$ X | Description$ CARDNAME's power and toughness are each equal to the number of creatures of the chosen type on the battlefield.
|
||||
SVar:X:Count$Valid Creature.ChosenType
|
||||
SVar:FullCost:2 G ChooseCreatureType<1>:MostProminentOnBattlefield
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/caller_of_the_hunt.jpg
|
||||
Oracle:As an additional cost to cast this spell, choose a creature type.\nCaller of the Hunt's power and toughness are each equal to the number of creatures of the chosen type on the battlefield.
|
||||
|
||||
@@ -6,4 +6,4 @@ SVar:DBPlay:DB$ Play | Defined$ Remembered | ValidZone$ Exile | Valid$ Instant.I
|
||||
SVar:DBRestRandomOrder:DB$ ChangeZone | Defined$ Remembered | AtRandom$ True | Origin$ Library | Destination$ Library | LibraryPosition$ -1 | SubAbility$ DBCleanup
|
||||
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/chaos_wand.jpg
|
||||
Oracle:{4}, {T}: Target opponent exiles cards from the top of their library until they exile an instant or sorcery card. You may cast that card without paying its mana cost. Then put the exiled cards that weren’t cast this way on the bottom of that library in a random order.
|
||||
Oracle:{4}, {T}: Target opponent exiles cards from the top of their library until they exile an instant or sorcery card. You may cast that card without paying its mana cost. Then put the exiled cards that weren't cast this way on the bottom of that library in a random order.
|
||||
|
||||
@@ -5,5 +5,5 @@ PT:7/7
|
||||
K:Flash
|
||||
K:Flying
|
||||
K:CARDNAME can't be countered.
|
||||
A:AB$ Animate | Cost$ Discard<1/Card> | Types$ Human | Power$ 1 | Toughness$ 1 | Keywords$ Hexproof | HiddenKeywords$ Unblockable | RemoveAllAbilities$ True | RemoveCreatureTypes$ True | SpellDescription$ Until end of turn, CARDNAME becomes a Human with base power and toughness 1/1, loses all abilities, and gains hexproof. It can’t be blocked this turn.
|
||||
Oracle:Flash\nThis spell can’t be countered.\nFlying\nDiscard a card: Until end of turn, Chromium, the Mutable becomes a Human with base power and toughness 1/1, loses all abilities, and gains hexproof. It can’t be blocked this turn.
|
||||
A:AB$ Animate | Cost$ Discard<1/Card> | Types$ Human | Power$ 1 | Toughness$ 1 | Keywords$ Hexproof | HiddenKeywords$ Unblockable | RemoveAllAbilities$ True | RemoveCreatureTypes$ True | SpellDescription$ Until end of turn, CARDNAME becomes a Human with base power and toughness 1/1, loses all abilities, and gains hexproof. It can't be blocked this turn.
|
||||
Oracle:Flash\nThis spell can't be countered.\nFlying\nDiscard a card: Until end of turn, Chromium, the Mutable becomes a Human with base power and toughness 1/1, loses all abilities, and gains hexproof. It can't be blocked this turn.
|
||||
@@ -2,8 +2,8 @@ Name:Circu, Dimir Lobotomist
|
||||
ManaCost:2 U B
|
||||
Types:Legendary Creature Human Wizard
|
||||
PT:2/3
|
||||
T:Mode$ SpellCast | ValidCard$ Card.Blue | ValidActivatingPlayer$ You | TriggerZones$ Battlefield | Execute$ ExileTop | TriggerDescription$ Whenever you cast a blue spell, exile the top card of target player’s library.
|
||||
T:Mode$ SpellCast | ValidCard$ Card.Black | ValidActivatingPlayer$ You | TriggerZones$ Battlefield | Execute$ ExileTop | TriggerDescription$ Whenever you cast a black spell, exile the top card of target player’s library.
|
||||
T:Mode$ SpellCast | ValidCard$ Card.Blue | ValidActivatingPlayer$ You | TriggerZones$ Battlefield | Execute$ ExileTop | TriggerDescription$ Whenever you cast a blue spell, exile the top card of target player's library.
|
||||
T:Mode$ SpellCast | ValidCard$ Card.Black | ValidActivatingPlayer$ You | TriggerZones$ Battlefield | Execute$ ExileTop | TriggerDescription$ Whenever you cast a black spell, exile the top card of target player's library.
|
||||
SVar:ExileTop:DB$ Mill | NumCards$ 1 | ValidTgts$ Player | TgtPrompt$ Choose a player | Destination$ Exile | RememberMilled$ True
|
||||
S:Mode$ CantBeCast | ValidCard$ Card.nonLand+sharesNameWith Remembered.ExiledWithSource | Caster$ Opponent | Description$ Your opponents can't cast spells with the same name as a card exiled with CARDNAME.
|
||||
T:Mode$ ChangesZone | Origin$ Exile | Destination$ Any | Static$ True | ValidCard$ Card.IsRemembered+ExiledWithSource | Execute$ DBForget
|
||||
@@ -11,4 +11,4 @@ SVar:DBForget:DB$ Pump | ForgetObjects$ TriggeredCard
|
||||
T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Any | Static$ True | ValidCard$ Card.Self | Execute$ DBCleanup
|
||||
SVar:DBCleanup:DB$Cleanup | ClearRemembered$ True
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/circu_dimir_lobotomist.jpg
|
||||
Oracle:Whenever you cast a blue spell, exile the top card of target player’s library.\nWhenever you cast a black spell, exile the top card of target player’s library.\nYour opponents can't cast spells with the same name as a card exiled with Circu, Dimir Lobotomist.
|
||||
Oracle:Whenever you cast a blue spell, exile the top card of target player's library.\nWhenever you cast a black spell, exile the top card of target player's library.\nYour opponents can't cast spells with the same name as a card exiled with Circu, Dimir Lobotomist.
|
||||
|
||||
@@ -4,9 +4,9 @@ Types:Legendary Creature Demon
|
||||
PT:6/6
|
||||
K:Flying
|
||||
K:Trample
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigRepeat | TriggerDescription$ When CARDNAME enters the battlefield, exile cards from the top of your library until you exile a nonland card, then put that card into your hand. If the card’s converted mana cost is 4 or greater, repeat this process. CARDNAME deals 1 damage to you for each card put into your hand this way.
|
||||
SVar:TrigRepeat:DB$ Repeat | RepeatSubAbility$ DBCleanup | RepeatDefined$ Remembered | RepeatPresent$ Card.cmcGE4 | RepeatCompare$ EQ1 | StackDescription$ Exile cards from the top of your library until you exile a nonland card, then put that card into your hand. If the card’s converted mana cost is 4 or greater, repeat this process. CARDNAME deals 1 damage to you for each card put into your hand this way.
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigRepeat | TriggerDescription$ When CARDNAME enters the battlefield, exile cards from the top of your library until you exile a nonland card, then put that card into your hand. If the card's converted mana cost is 4 or greater, repeat this process. CARDNAME deals 1 damage to you for each card put into your hand this way.
|
||||
SVar:TrigRepeat:DB$ Repeat | RepeatSubAbility$ DBCleanup | RepeatDefined$ Remembered | RepeatPresent$ Card.cmcGE4 | RepeatCompare$ EQ1 | StackDescription$ Exile cards from the top of your library until you exile a nonland card, then put that card into your hand. If the card's converted mana cost is 4 or greater, repeat this process. CARDNAME deals 1 damage to you for each card put into your hand this way.
|
||||
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True | SubAbility$ DBDigUntil
|
||||
SVar:DBDigUntil:DB$ DigUntil | ValidPlayer$ You | Valid$ Card.nonLand | ValidDescription$ nonland | FoundDestination$ Hand | RevealedDestination$ Exile | RememberFound$ True | SubAbility$ DBDealDamage
|
||||
SVar:DBDealDamage:DB$ DealDamage | NumDmg$ 1 | Defined$ You
|
||||
Oracle:Flying, trample\nWhen Demonlord Belzenlok enters the battlefield, exile cards from the top of your library until you exile a nonland card, then put that card into your hand. If the card’s converted mana cost is 4 or greater, repeat this process. Demonlord Belzenlok deals 1 damage to you for each card put into your hand this way.
|
||||
Oracle:Flying, trample\nWhen Demonlord Belzenlok enters the battlefield, exile cards from the top of your library until you exile a nonland card, then put that card into your hand. If the card's converted mana cost is 4 or greater, repeat this process. Demonlord Belzenlok deals 1 damage to you for each card put into your hand this way.
|
||||
|
||||
@@ -2,8 +2,8 @@ Name:Detection Tower
|
||||
ManaCost:no cost
|
||||
Types:Land
|
||||
A:AB$ Mana | Cost$ T | Produced$ C | SpellDescription$ Add {C}.
|
||||
A:AB$ Effect | Cost$ 1 T | StaticAbilities$ STLoseAB | SpellDescription$ Until end of turn, your opponents and creatures your opponents control with hexproof can be the targets of spells and abilities you control as though they didn’t have hexproof.
|
||||
SVar:STLoseAB:Mode$ Continuous | EffectZone$ Command | Affected$ You | AddKeyword$ IgnoreHexproof:Opponent,Creature.OppCtrl | Description$ Your opponents and creatures your opponents control with hexproof can be the targets of spells and abilities you control as though they didn’t have hexproof.
|
||||
A:AB$ Effect | Cost$ 1 T | StaticAbilities$ STLoseAB | SpellDescription$ Until end of turn, your opponents and creatures your opponents control with hexproof can be the targets of spells and abilities you control as though they didn't have hexproof.
|
||||
SVar:STLoseAB:Mode$ Continuous | EffectZone$ Command | Affected$ You | AddKeyword$ IgnoreHexproof:Opponent,Creature.OppCtrl | Description$ Your opponents and creatures your opponents control with hexproof can be the targets of spells and abilities you control as though they didn't have hexproof.
|
||||
AI:RemoveDeck:All
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/detection_tower.jpg
|
||||
Oracle:{T}: Add {C}.\n{1}, {T}: Until end of turn, your opponents and creatures your opponents control with hexproof can be the targets of spells and abilities you control as though they didn’t have hexproof.
|
||||
Oracle:{T}: Add {C}.\n{1}, {T}: Until end of turn, your opponents and creatures your opponents control with hexproof can be the targets of spells and abilities you control as though they didn't have hexproof.
|
||||
|
||||
@@ -2,9 +2,9 @@ Name:Dragon's Hoard
|
||||
ManaCost:3
|
||||
Types:Artifact
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/dragons_hoard.jpg
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Dragon.YouCtrl | TriggerZones$ Battlefield | Execute$ DBPutCounter | TriggerDescription$ Whenever a Dragon enters the battlefield under your control, put a gold counter on Dragon’s Hoard.
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Dragon.YouCtrl | TriggerZones$ Battlefield | Execute$ DBPutCounter | TriggerDescription$ Whenever a Dragon enters the battlefield under your control, put a gold counter on Dragon's Hoard.
|
||||
SVar:DBPutCounter:DB$PutCounter | Defined$ Self | CounterType$ GOLD | CounterNum$ 1
|
||||
A:AB$ Draw | Cost$ T SubCounter<1/GOLD> | NumCards$ 1 | SpellDescription$ Draw a card.
|
||||
A:AB$ Mana | Cost$ T | Produced$ Any | SpellDescription$ Add one mana of any color.
|
||||
DeckHints:Type$Dragon
|
||||
Oracle:Whenever a Dragon enters the battlefield under your control, put a gold counter on Dragon’s Hoard.\n{T}, Remove a gold counter from Dragon’s Hoard: Draw a card.\n{T}: Add one mana of any color.
|
||||
Oracle:Whenever a Dragon enters the battlefield under your control, put a gold counter on Dragon's Hoard.\n{T}, Remove a gold counter from Dragon's Hoard: Draw a card.\n{T}: Add one mana of any color.
|
||||
|
||||
@@ -10,4 +10,4 @@ SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True | SubAbility$ DBLose
|
||||
SVar:DBLose:DB$ LosesGame | Defined$ TriggeredTarget | ConditionCheckSVar$ CheckExile | ConditionSVarCompare$ GE3 | References$ CheckExile | SubAbility$ DBShuffle
|
||||
SVar:CheckExile:Count$ValidExile Card.DefendingPlayerCtrl+counters_GE1_HIT
|
||||
SVar:DBShuffle:DB$ ChangeZone | ConditionPresent$ Card.Self | ConditionCompare$ GE1 | ValidCard$ Card.Self | Origin$ Battlefield | Destination$ Library | Shuffle$ True
|
||||
Oracle:Whenever Etrata deals combat damage to a player, exile target creature that player controls and put a hit counter on that card. That player loses the game if they own three or more exiled card with hit counters on them. Etrata’s owner shuffles Etrata into their library.
|
||||
Oracle:Whenever Etrata deals combat damage to a player, exile target creature that player controls and put a hit counter on that card. That player loses the game if they own three or more exiled card with hit counters on them. Etrata's owner shuffles Etrata into their library.
|
||||
@@ -2,7 +2,7 @@ Name:Gemstone Caverns
|
||||
ManaCost:no cost
|
||||
Types:Legendary Land
|
||||
K:MayEffectFromOpeningHand:FromOpeningHand:!PlayFirst
|
||||
SVar:FromOpeningHand:DB$ ChangeZone | Defined$ Self | Origin$ Hand | Destination$ Battlefield | SubAbility$ LuckCounter | SpellDescription$ If CARDNAME is in your opening hand and you're not playing first, you may begin the game with CARDNAME on the battlefield with a luck counter on it.
|
||||
SVar:FromOpeningHand:DB$ ChangeZone | Defined$ Self | Origin$ Hand | Destination$ Battlefield | SubAbility$ LuckCounter | SpellDescription$ If CARDNAME is in your opening hand and you're not playing first, you may begin the game with CARDNAME on the battlefield with a luck counter on it. If you do, exile a card from your hand.
|
||||
SVar:LuckCounter:DB$ PutCounter | CounterType$ LUCK | CounterNum$ 1 | Defined$ Self | SubAbility$ ExileFromHand
|
||||
SVar:ExileFromHand:DB$ ChangeZone | Origin$ Hand | Destination$ Exile | ChangeType$ Card | ChangeNum$ 1 | Mandatory$ True | SpellDescription$ If you do, exile a card from your hand.
|
||||
A:AB$ Mana | Cost$ T | Produced$ C | ConditionCheckSVar$ CheckCounter | ConditionSVarCompare$ EQ0 | SubAbility$ DBMana | References$ CheckCounter | SpellDescription$ Add {C}. If CARDNAME has a luck counter on it, instead add one mana of any color.
|
||||
|
||||
@@ -3,6 +3,6 @@ ManaCost:2 U
|
||||
Types:Creature Zombie Warrior
|
||||
PT:3/6
|
||||
K:CARDNAME enters the battlefield tapped.
|
||||
SVar:FullCost:2 U ExileFromGrave<1/Creature>
|
||||
A:SP$ PermanentCreature | Cost$ 2 U ExileFromGrave<1/Creature>
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/headless_skaab.jpg
|
||||
Oracle:As an additional cost to cast Headless Skaab, exile a creature card from your graveyard.\nHeadless Skaab enters the battlefield tapped.
|
||||
|
||||
@@ -2,7 +2,6 @@ Name:Imperiosaur
|
||||
ManaCost:2 G G
|
||||
Types:Creature Dinosaur
|
||||
Text:Spend only mana produced by basic lands to cast CARDNAME.
|
||||
PT:5/5
|
||||
SVar:FullCost:Mana<2 G G\Basic>
|
||||
A:SP$ PermanentCreature | Cost$ Mana<2 G G\Basic>
|
||||
SVar:Picture:http://resources.wizards.com/magic/cards/fut/en-us/card130634.jpg
|
||||
Oracle:Spend only mana produced by basic lands to cast Imperiosaur.
|
||||
|
||||
@@ -4,6 +4,6 @@ Types:Legendary Creature Centaur Spirit
|
||||
PT:3/4
|
||||
S:Mode$ ReduceCost | ValidCard$ Card.Self | Type$ Spell | Amount$ X | EffectZone$ All | Description$ CARDNAME costs {1} less to cast for each creature card in your graveyard.
|
||||
SVar:X:Count$ValidGraveyard Creature.YouCtrl
|
||||
S:Mode$ Continuous | Affected$ Creature.YouCtrl | Condition$ PlayerTurn | MayPlay$ True | MayPlayLimit$ 1 | EffectZone$ Battlefield | AffectedZone$ Graveyard | Description$ During each of your turns, you may cast one creature card from your graveyard.
|
||||
S:Mode$ Continuous | Affected$ Creature.nonLand+YouCtrl | Condition$ PlayerTurn | MayPlay$ True | MayPlayLimit$ 1 | EffectZone$ Battlefield | AffectedZone$ Graveyard | Description$ During each of your turns, you may cast one creature card from your graveyard.
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/karador_ghost_chieftain.jpg
|
||||
Oracle:Karador, Ghost Chieftain costs {1} less to cast for each creature card in your graveyard.\nDuring each of your turns, you may cast one creature card from your graveyard.
|
||||
|
||||
@@ -2,7 +2,7 @@ Name:Kargan Dragonrider
|
||||
ManaCost:1 R
|
||||
Types:Creature Human Warrior
|
||||
PT:2/2
|
||||
S:Mode$ Continuous | Affected$ Card.Self | AddKeyword$ Flying | IsPresent$ Dragon.YouCtrl | Description$ As long as you control a Dragon, CARDNAME has flying. (It can’t be blocked except by creatures with flying or reach.)
|
||||
S:Mode$ Continuous | Affected$ Card.Self | AddKeyword$ Flying | IsPresent$ Dragon.YouCtrl | Description$ As long as you control a Dragon, CARDNAME has flying. (It can't be blocked except by creatures with flying or reach.)
|
||||
SVar:BuffedBy:Dragon
|
||||
DeckHints:Type$Dragon
|
||||
Oracle:As long as you control a Dragon, Kargan Dragonrider has flying. (It can’t be blocked except by creatures with flying or reach.)
|
||||
Oracle:As long as you control a Dragon, Kargan Dragonrider has flying. (It can't be blocked except by creatures with flying or reach.)
|
||||
|
||||
@@ -5,6 +5,6 @@ PT:3/2
|
||||
K:Reach
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigPump | TriggerDescription$ When CARDNAME enters the battlefield, choose up to one target creature with flying you don't control. CARDNAME gets +X/+0 until end of turn, where X is the number of creature cards in your graveyard, then you may have CARDNAME fight that creature.
|
||||
SVar:TrigPump:DB$ Pump | Defined$ Self | NumAtt$ X | References$ X | SubAbility$ DBFight
|
||||
SVar:DBFight:DB$ Fight | Defined$ Self | ValidTgts$ Creature.withFlying+YouDontCtrl | TgtPrompt$ Select target creature with flying you don't control
|
||||
SVar:DBFight:DB$ Fight | Defined$ Self | ValidTgts$ Creature.withFlying+YouDontCtrl | TgtPrompt$ Select target creature with flying you don't control | TargetMin$ 0 | TargetMax$ 1
|
||||
SVar:X:Count$TypeInYourYard.Creature
|
||||
Oracle:Reach\nUndergrowth — When Kraul Harpooner enters the battlefield, choose up to one target creature with flying you don't control. Kraul Harpooner gets +X/+0 until end of turn, where X is the number of creature cards in your graveyard, then you may have Kraul Harpooner fight that creature.
|
||||
|
||||
@@ -3,8 +3,8 @@ ManaCost:U U B B
|
||||
Types:Legendary Creature Shapeshifter
|
||||
PT:3/3
|
||||
K:Hexproof
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Graveyard | ValidCard$ Creature.nonToken+OppOwn | TriggerZones$ Battlefield | Execute$ LazavCopy | OptionalDecider$ You | TriggerDescription$ Whenever a creature card is put into an opponent’s graveyard from anywhere, you may have Lazav, Dimir Mastermind become a copy of that card, except its name is Lazav, Dimir Mastermind, it’s legendary in addition to its other types, and it has hexproof and this ability.
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Graveyard | ValidCard$ Creature.nonToken+OppOwn | TriggerZones$ Battlefield | Execute$ LazavCopy | OptionalDecider$ You | TriggerDescription$ Whenever a creature card is put into an opponent's graveyard from anywhere, you may have Lazav, Dimir Mastermind become a copy of that card, except its name is Lazav, Dimir Mastermind, it's legendary in addition to its other types, and it has hexproof and this ability.
|
||||
SVar:LazavCopy:DB$ Clone | Defined$ TriggeredCard | NewName$ Lazav, Dimir Mastermind | AddTypes$ Legendary | AddKeywords$ Hexproof | GainThisAbility$ True
|
||||
AI:RemoveDeck:All
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/lazav_dimir_mastermind.jpg
|
||||
Oracle:Hexproof\nWhenever a creature card is put into an opponent’s graveyard from anywhere, you may have Lazav, Dimir Mastermind become a copy of that card, except its name is Lazav, Dimir Mastermind, it’s legendary in addition to its other types, and it has hexproof and this ability.
|
||||
Oracle:Hexproof\nWhenever a creature card is put into an opponent's graveyard from anywhere, you may have Lazav, Dimir Mastermind become a copy of that card, except its name is Lazav, Dimir Mastermind, it's legendary in addition to its other types, and it has hexproof and this ability.
|
||||
|
||||
@@ -2,6 +2,6 @@ Name:Makeshift Mauler
|
||||
ManaCost:3 U
|
||||
Types:Creature Zombie Horror
|
||||
PT:4/5
|
||||
SVar:FullCost:3 U ExileFromGrave<1/Creature>
|
||||
A:SP$ PermanentCreature | Cost$ 3 U ExileFromGrave<1/Creature>
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/makeshift_mauler.jpg
|
||||
Oracle:As an additional cost to cast Makeshift Mauler, exile a creature card from your graveyard.
|
||||
|
||||
@@ -3,7 +3,7 @@ ManaCost:2
|
||||
Types:Artifact Creature Myr
|
||||
PT:5/6
|
||||
Text:Spend only mana produced by creatures to cast CARDNAME.
|
||||
SVar:FullCost:Mana<2\Creature>
|
||||
A:SP$ PermanentCreature | Cost$ Mana<2\Creature>
|
||||
AI:RemoveDeck:Random
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/myr_superion.jpg
|
||||
Oracle:Spend only mana produced by creatures to cast Myr Superion.
|
||||
|
||||
@@ -5,9 +5,9 @@ PT:2/2
|
||||
K:Kicker:1 G:W
|
||||
K:ETBReplacement:Other:VolverStrength:Mandatory::Card.Self+kicked 1
|
||||
K:ETBReplacement:Other:VolverPumped:Mandatory::Card.Self+kicked 2
|
||||
SVar:VolverPumped:DB$ PutCounter | Defined$ Self | CounterType$ P1P1 | CounterNum$ 2 | ETB$ True | SubAbility$ VolverStomp | SpellDescription$ If CARDNAME was kicked with its {1}{G} kicker, it enters the battlefield with two +1/+1 counters on it and with trample.
|
||||
SVar:VolverStrength:DB$ PutCounter | Defined$ Self | CounterType$ P1P1 | CounterNum$ 2 | ETB$ True | SubAbility$ VolverStomp | SpellDescription$ If CARDNAME was kicked with its {1}{G} kicker, it enters the battlefield with two +1/+1 counters on it and with trample.
|
||||
SVar:VolverStomp:DB$ Animate | Defined$ Self | Keywords$ Trample | Permanent$ True
|
||||
SVar:VolverPumped2:DB$ PutCounter | Defined$ Self | CounterType$ P1P1 | CounterNum$ 1 | ETB$ True | SubAbility$ VolverLife | SpellDescription$ If CARDNAME was kicked with its {W} kicker, it enters the battlefield with a +1/+1 counter on it and with "Whenever CARDNAME deals damage, you gain that much life."
|
||||
SVar:VolverPumped:DB$ PutCounter | Defined$ Self | CounterType$ P1P1 | CounterNum$ 1 | ETB$ True | SubAbility$ VolverLife | SpellDescription$ If CARDNAME was kicked with its {W} kicker, it enters the battlefield with a +1/+1 counter on it and with "Whenever CARDNAME deals damage, you gain that much life."
|
||||
SVar:VolverLife:DB$ Animate | Defined$ Self | Triggers$ PseudoLifelink | sVars$ VolverTrigGain,VolverX | Permanent$ True
|
||||
SVar:PseudoLifelink:Mode$ DamageDealtOnce | ValidSource$ Card.Self | Execute$ VolverTrigGain | TriggerZones$ Battlefield | TriggerDescription$ Whenever CARDNAME deals damage, you gain that much life.
|
||||
SVar:VolverTrigGain:DB$ GainLife | Defined$ You | LifeAmount$ VolverX | References$ VolverX
|
||||
|
||||
@@ -5,11 +5,11 @@ PT:4/4
|
||||
K:Flying
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigDiscard | TriggerDescription$ When CARDNAME enters the battlefield, each opponent discards a card.
|
||||
SVar:TrigDiscard:DB$ Discard | Defined$ Player.Opponent | NumCards$ 1 | Mode$ TgtChoose
|
||||
A:AB$ ChangeZone | Cost$ 4 U B R | Origin$ Battlefield | Destination$ Exile | RememberChanged$ True | SubAbility$ DBReturn | StackDescription$ SpellDescription | SpellDescription$ Exile CARDNAME, then return him to the battlefield transformed under his owner’s control. Activate this ability only any time you could cast a sorcery.
|
||||
A:AB$ ChangeZone | Cost$ 4 U B R | Origin$ Battlefield | Destination$ Exile | RememberChanged$ True | SubAbility$ DBReturn | StackDescription$ SpellDescription | SpellDescription$ Exile CARDNAME, then return him to the battlefield transformed under his owner's control. Activate this ability only any time you could cast a sorcery.
|
||||
SVar:DBReturn:DB$ ChangeZone | Defined$ Remembered | Origin$ Exile | Destination$ Battlefield | Transformed$ True | ForgetOtherRemembered$ True | SubAbility$ DBCleanup | StackDescription$ None
|
||||
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
|
||||
AlternateMode:DoubleFaced
|
||||
Oracle:Flying\nWhen Nicol Bolas, the Ravager enters the battlefield, each opponent discards a card.\n{4}{U}{B}{R}: Exile Nicol Bolas, the Ravager, then return him to the battlefield transformed under his owner’s control. Activate this ability only any time you could cast a sorcery.
|
||||
Oracle:Flying\nWhen Nicol Bolas, the Ravager enters the battlefield, each opponent discards a card.\n{4}{U}{B}{R}: Exile Nicol Bolas, the Ravager, then return him to the battlefield transformed under his owner's control. Activate this ability only any time you could cast a sorcery.
|
||||
|
||||
ALTERNATE
|
||||
|
||||
@@ -21,6 +21,6 @@ Loyalty:7
|
||||
A:AB$ Draw | Cost$ AddCounter<2/LOYALTY> | NumCards$ 2 | Planeswalker$ True | SpellDescription$ Draw two cards.
|
||||
A:AB$ DealDamage | Cost$ SubCounter<3/LOYALTY> | ValidTgts$ Creature,Planeswalker | TgtPrompt$ Select target | Planeswalker$ True | NumDmg$ 10 | SpellDescription$ CARDNAME deals 10 damage to target creature or planeswalker.
|
||||
A:AB$ ChangeZone | Cost$ SubCounter<4/LOYALTY> | Origin$ Graveyard | Destination$ Battlefield | Planeswalker$ True | GainControl$ True | ValidTgts$ Creature,Planeswalker | TgtPrompt$ Choose target creature or planeswalker card in a graveyard | SpellDescription$ Put target creature or planeswalker card from a graveyard onto the battlefield under your control.
|
||||
A:AB$ Mill | Cost$ SubCounter<12/LOYALTY> | NumCards$ X | Destination$ Exile | ValidTgts$ Player | TgtPrompt$ Choose a player | Planeswalker$ True | Ultimate$ True | References$ X | SpellDescription$ Exile all but the bottom card of target player’s library.
|
||||
A:AB$ Mill | Cost$ SubCounter<12/LOYALTY> | NumCards$ X | Destination$ Exile | ValidTgts$ Player | TgtPrompt$ Choose a player | Planeswalker$ True | Ultimate$ True | References$ X | SpellDescription$ Exile all but the bottom card of target player's library.
|
||||
SVar:X:Count$InTargetedLibrary.Card/Minus.1
|
||||
Oracle:+2: Draw two cards.\n−3: Nicol Bolas, the Arisen deals 10 damage to target creature or planeswalker.\n−4: Put target creature or planeswalker card from a graveyard onto the battlefield under your control.\n−12: Exile all but the bottom card of target player’s library.
|
||||
Oracle:+2: Draw two cards.\n−3: Nicol Bolas, the Arisen deals 10 damage to target creature or planeswalker.\n−4: Put target creature or planeswalker card from a graveyard onto the battlefield under your control.\n−12: Exile all but the bottom card of target player's library.
|
||||
|
||||
@@ -9,4 +9,4 @@ SVar:Y:Count$Valid Warrior.YourTeamCtrl
|
||||
SVar:X:Targeted$Valid Creature.powerLEY
|
||||
SVar:HasAttackEffect:TRUE
|
||||
SVar:BuffedBy:Warrior
|
||||
Oracle:Flying\nWhenever Nimbus Champion attacks, you may return target creature to its owner’s hand if that creature’s power is less than or equal to the number of Warriors your team controls.
|
||||
Oracle:Flying\nWhenever Nimbus Champion attacks, you may return target creature to its owner's hand if that creature's power is less than or equal to the number of Warriors your team controls.
|
||||
|
||||
@@ -5,5 +5,5 @@ PT:6/6
|
||||
K:Flying
|
||||
K:Vigilance
|
||||
K:Trample
|
||||
S:Mode$ Continuous | Affected$ Card.Self | AddKeyword$ Hexproof | IsPresent$ Card.Self+dealtDamageThisTurn | PresentCompare$ EQ0 | Description$ CARDNAME has hexproof if it hasn’t dealt damage yet.
|
||||
Oracle:Flying, vigilance, trample\nPalladia-Mors, the Ruiner has hexproof if it hasn’t dealt damage yet.
|
||||
S:Mode$ Continuous | Affected$ Card.Self | AddKeyword$ Hexproof | IsPresent$ Card.Self+dealtDamageThisTurn | PresentCompare$ EQ0 | Description$ CARDNAME has hexproof if it hasn't dealt damage yet.
|
||||
Oracle:Flying, vigilance, trample\nPalladia-Mors, the Ruiner has hexproof if it hasn't dealt damage yet.
|
||||
|
||||
@@ -5,6 +5,6 @@ K:Saga:3:DBPutCounter,DBDestroyAll,DBChangeZoneAll
|
||||
SVar:DBPutCounter:DB$ PutCounter | ValidTgts$ Creature | TgtPrompt$ Select up to one target creature | CounterType$ P1P1 | CounterNum$ 1 | TargetMin$ 0 | TargetMax$ 1 | SubAbility$ DBAnimate | SpellDescription$ Put a +1/+1 counter on up to one target creature. That creature becomes an artifact in addition to its other types.
|
||||
SVar:DBAnimate:DB$ Animate | Defined$ Targeted | Types$ Artifact | Permanent$ True
|
||||
SVar:DBDestroyAll:DB$ DestroyAll | ValidCards$ Creature.nonArtifact | SpellDescription$ Destroy all nonartifact creatures.
|
||||
SVar:DBChangeZoneAll:DB$ ChangeZoneAll | ChangeType$ Card.OppCtrl | Origin$ Graveyard | Destination$ Exile | SpellDescription$ Exile all cards from all opponents’ graveyards.
|
||||
SVar:DBChangeZoneAll:DB$ ChangeZoneAll | ChangeType$ Card.OppCtrl | Origin$ Graveyard | Destination$ Exile | SpellDescription$ Exile all cards from all opponents' graveyards.
|
||||
SVar:NeedsToPlay:Creature.YouCtrl
|
||||
Oracle:(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)\nI — Put a +1/+1 counter on up to one target creature. That creature becomes an artifact in addition to its other types.\nII — Destroy all nonartifact creatures.\nIII — Exile all cards from all opponents’ graveyards.
|
||||
Oracle:(As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)\nI — Put a +1/+1 counter on up to one target creature. That creature becomes an artifact in addition to its other types.\nII — Destroy all nonartifact creatures.\nIII — Exile all cards from all opponents' graveyards.
|
||||
|
||||
@@ -5,4 +5,4 @@ PT:2/2
|
||||
K:CantBeBlockedBy Creature.White
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigPumpAll | TriggerDescription$ When CARDNAME enters the battlefield, creatures your opponents control get -1/-1 until end of turn.
|
||||
SVar:TrigPumpAll:DB$ PumpAll | ValidCards$ Creature.OppCtrl | NumAtt$ -1 | NumDef$ -1 | IsCurse$ True
|
||||
Oracle:Plague Mare can’t be blocked by white creatures.\nWhen Plague Mare enters the battlefield, creatures your opponents control get -1/-1 until end of turn.
|
||||
Oracle:Plague Mare can't be blocked by white creatures.\nWhen Plague Mare enters the battlefield, creatures your opponents control get -1/-1 until end of turn.
|
||||
@@ -3,6 +3,6 @@ ManaCost:3 U U
|
||||
Types:Creature Zombie
|
||||
PT:4/4
|
||||
K:Undying
|
||||
SVar:FullCost:3 U U ExileFromGrave<1/Creature>
|
||||
A:SP$ PermanentCreature | Cost$ 3 U U ExileFromGrave<1/Creature>
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/relentless_skaabs.jpg
|
||||
Oracle:As an additional cost to cast Relentless Skaabs, exile a creature card from your graveyard.\nUndying (When this creature dies, if it had no +1/+1 counters on it, return it to the battlefield under its owner's control with a +1/+1 counter on it.)
|
||||
|
||||
@@ -4,8 +4,8 @@ Types:Legendary Creature Human Rogue
|
||||
PT:3/1
|
||||
# Make Svars for granting abilities and triggers on clones distinct to avoid SVars getting overwritten when cloning a clone
|
||||
K:ETBReplacement:Copy:DBCopy:Optional
|
||||
SVar:DBCopy:DB$ Clone | Choices$ Creature.Other | NewName$ Sakashima the Impostor | AddTypes$ Legendary | AddAbilities$ ReturnSakashima | AddSVars$ TrigReturnSak | SpellDescription$ You may have CARDNAME enter the battlefield as a copy of any creature on the battlefield, except its name is Sakashima the Impostor, it’s legendary in addition to its other types, and it has “{2}{U}{U}: Return this creature to its owner’s hand at the beginning of the next end step.”
|
||||
SVar:DBCopy:DB$ Clone | Choices$ Creature.Other | NewName$ Sakashima the Impostor | AddTypes$ Legendary | AddAbilities$ ReturnSakashima | AddSVars$ TrigReturnSak | SpellDescription$ You may have CARDNAME enter the battlefield as a copy of any creature on the battlefield, except its name is Sakashima the Impostor, it's legendary in addition to its other types, and it has "{2}{U}{U}: Return this creature to its owner's hand at the beginning of the next end step."
|
||||
SVar:ReturnSakashima:AB$ DelayedTrigger | Cost$ 2 U U | Mode$ Phase | Phase$ End of Turn | Execute$ TrigReturnSak | SpellDescription$ Return CARDNAME to it's owners hand at the beginning of the next end step.
|
||||
SVar:TrigReturnSak:DB$ ChangeZone | Defined$ Self | Origin$ Battlefield | Destination$ Hand
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/sakashima_the_impostor.jpg
|
||||
Oracle:You may have Sakashima the Impostor enter the battlefield as a copy of any creature on the battlefield, except its name is Sakashima the Impostor, it’s legendary in addition to its other types, and it has “{2}{U}{U}: Return this creature to its owner’s hand at the beginning of the next end step.”
|
||||
Oracle:You may have Sakashima the Impostor enter the battlefield as a copy of any creature on the battlefield, except its name is Sakashima the Impostor, it's legendary in addition to its other types, and it has "{2}{U}{U}: Return this creature to its owner's hand at the beginning of the next end step."
|
||||
|
||||
@@ -3,4 +3,4 @@ ManaCost:3 R R
|
||||
Types:Sorcery
|
||||
A:SP$ DealDamage | Cost$ 3 R R | ValidTgts$ Creature,Player,Planeswalker | TgtPrompt$ Select any target | NumDmg$ 4 | SubAbility$ DBDig | SpellDescription$ CARDNAME deals 4 damage to any target.
|
||||
SVar:DBDig:DB$ Dig | DigNum$ 5 | ChangeNum$ 1 | Optional$ True | ForceRevealToController$ True | ChangeValid$ Card.Red | SpellDescription$ Look at the top five cards of your library. You may reveal a red card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.
|
||||
Oracle:Sarkhan’s Dragonfire deals 3 damage to any target.\nLook at the top five cards of your library. You may reveal a red card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.
|
||||
Oracle:Sarkhan's Dragonfire deals 3 damage to any target.\nLook at the top five cards of your library. You may reveal a red card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
Name:Sarkhan's Unsealing
|
||||
ManaCost:3 R
|
||||
Types:Enchantment
|
||||
T:Mode$ SpellCast | ValidCard$ Creature.powerGE4+powerLE6 | ValidActivatingPlayer$ You | Execute$ TrigDamage | TriggerZones$ Battlefield | TriggerDescription$ Whenever you cast a creature spell with power 4, 5, or 6, Sarkhan’s Unsealing deals 4 damage to any target.
|
||||
T:Mode$ SpellCast | ValidCard$ Creature.powerGE4+powerLE6 | ValidActivatingPlayer$ You | Execute$ TrigDamage | TriggerZones$ Battlefield | TriggerDescription$ Whenever you cast a creature spell with power 4, 5, or 6, Sarkhan's Unsealing deals 4 damage to any target.
|
||||
SVar:TrigDamage:DB$ DealDamage | ValidTgts$ Creature,Player,Planeswalker | TgtPrompt$ Select any target | NumDmg$ 4 | SpellDescription$ CARDNAME deals 4 damage to any target.
|
||||
T:Mode$ SpellCast | ValidCard$ Creature.powerGE7 | ValidActivatingPlayer$ You | Execute$ TrigDamageAll | TriggerZones$ Battlefield | TriggerDescription$ Whenever you cast a creature spell with power 7 or greater, Sarkhan’s Unsealing deals 4 damage to each opponent and each creature and planeswalker they control.
|
||||
T:Mode$ SpellCast | ValidCard$ Creature.powerGE7 | ValidActivatingPlayer$ You | Execute$ TrigDamageAll | TriggerZones$ Battlefield | TriggerDescription$ Whenever you cast a creature spell with power 7 or greater, Sarkhan's Unsealing deals 4 damage to each opponent and each creature and planeswalker they control.
|
||||
SVar:TrigDamageAll:DB$ DamageAll | ValidCards$ Creature.OppCtrl,Planeswalker.OppCtrl | ValidPlayers$ Player.Opponent | NumDmg$ 4 | ValidDescription$ each opponent and each creature and planeswalker they control.
|
||||
Oracle:Whenever you cast a creature spell with power 4, 5, or 6, Sarkhan’s Unsealing deals 4 damage to any target.\nWhenever you cast a creature spell with power 7 or greater, Sarkhan’s Unsealing deals 4 damage to each opponent and each creature and planeswalker they control.
|
||||
Oracle:Whenever you cast a creature spell with power 4, 5, or 6, Sarkhan's Unsealing deals 4 damage to any target.\nWhenever you cast a creature spell with power 7 or greater, Sarkhan's Unsealing deals 4 damage to each opponent and each creature and planeswalker they control.
|
||||
|
||||
@@ -6,4 +6,4 @@ K:Flying
|
||||
T:Mode$ AbilityCast | ValidCard$ Planeswalker.Sarkhan | ValidActivatingPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigDamage | TriggerDescription$ Whenever you activate an ability of a Sarkhan planeswalker, CARDNAME deals 1 damage to any target.
|
||||
SVar:TrigDamage:DB$DealDamage | ValidTgts$ Creature,Player,Planeswalker | TgtPrompt$ Select any target | NumDmg$ 1
|
||||
DeckHints:Type$Sarkhan
|
||||
Oracle:Flying (This creature can’t be blocked except by creatures with flying or reach.)\nWhenever you activate an ability of a Sarkhan planeswalker, Sarkhan’s Whelp deals 1 damage to any target.
|
||||
Oracle:Flying (This creature can't be blocked except by creatures with flying or reach.)\nWhenever you activate an ability of a Sarkhan planeswalker, Sarkhan's Whelp deals 1 damage to any target.
|
||||
|
||||
@@ -3,8 +3,8 @@ ManaCost:3
|
||||
Types:Artifact Equipment
|
||||
K:Equip:3
|
||||
S:Mode$ Continuous | Affected$ Creature.EquippedBy | AddPower$ 2 | AddKeyword$ Vigilance | AddType$ Knight | Description$ Equipped creature gets +2/+0, has vigilance, and is a Knight in addition to its other types.
|
||||
T:Mode$ Attacks | ValidCard$ Card.EquippedBy | Execute$ TrigToken | TriggerDescription$ Whenever equipped creature attacks, create a 2/2 white Knight creature token with vigilance that’s attacking.
|
||||
T:Mode$ Attacks | ValidCard$ Card.EquippedBy | Execute$ TrigToken | TriggerDescription$ Whenever equipped creature attacks, create a 2/2 white Knight creature token with vigilance that's attacking.
|
||||
SVar:TrigToken:DB$ Token | TokenAmount$ 1 | TokenName$ Knight | TokenTypes$ Creature,Knight | TokenOwner$ You | TokenColors$ White | TokenPower$ 2 | TokenToughness$ 2 | TokenKeywords$ Vigilance | TokenAttacking$ True | TokenImage$ w 2 2 knight m19
|
||||
DeckHas:Ability$Token
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/sigiled_sword_of_valeron.jpg
|
||||
Oracle:Equipped creature gets +2/+0, has vigilance, and is a Knight in addition to its other types.\nWhenever equipped creature attacks, create a 2/2 white Knight creature token with vigilance that’s attacking.\nEquip {3}
|
||||
Oracle:Equipped creature gets +2/+0, has vigilance, and is a Knight in addition to its other types.\nWhenever equipped creature attacks, create a 2/2 white Knight creature token with vigilance that's attacking.\nEquip {3}
|
||||
|
||||
@@ -3,4 +3,4 @@ ManaCost:W W
|
||||
Types:Creature Griffin
|
||||
PT:2/2
|
||||
K:Flying
|
||||
Oracle:Flying (This creature can’t be blocked except by creatures with flying or reach.)
|
||||
Oracle:Flying (This creature can't be blocked except by creatures with flying or reach.)
|
||||
|
||||
@@ -3,6 +3,6 @@ ManaCost:5 U
|
||||
Types:Creature Zombie Giant
|
||||
PT:6/9
|
||||
K:Trample
|
||||
SVar:FullCost:5 U ExileFromGrave<2/Creature>
|
||||
A:SP$ PermanentCreature | Cost$ 5 U ExileFromGrave<2/Creature>
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/skaab_goliath.jpg
|
||||
Oracle:As an additional cost to cast Skaab Goliath, exile two creature cards from your graveyard.\nTrample
|
||||
|
||||
@@ -3,7 +3,7 @@ ManaCost:1 U U
|
||||
Types:Creature Zombie Horror
|
||||
PT:5/6
|
||||
K:Flying
|
||||
SVar:FullCost:1 U U ExileFromGrave<3/Creature>
|
||||
A:SP$ PermanentCreature | Cost$ 1 U U ExileFromGrave<3/Creature>
|
||||
SVar:AltCost:Cost$ 1 U U ExileFromGrave<3/Creature.Other> | ActivationZone$ Graveyard | Description$ You may cast CARDNAME from your graveyard.
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/skaab_ruinator.jpg
|
||||
Oracle:As an additional cost to cast Skaab Ruinator, exile three creature cards from your graveyard.\nFlying\nYou may cast Skaab Ruinator from your graveyard.
|
||||
|
||||
@@ -3,6 +3,6 @@ ManaCost:1 U U
|
||||
Types:Creature Zombie Drake
|
||||
PT:3/4
|
||||
K:Flying
|
||||
SVar:FullCost:1 U U ExileFromGrave<1/Creature>
|
||||
A:SP$ PermanentCreature | Cost$ 1 U U ExileFromGrave<1/Creature>
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/stitched_drake.jpg
|
||||
Oracle:As an additional cost to cast Stitched Drake, exile a creature card from your graveyard.\nFlying
|
||||
|
||||
@@ -5,4 +5,4 @@ PT:1/1
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigMill | TriggerDescription$ When CARDNAME enters the battlefield or dies, put the top three cards of your library into your graveyard.
|
||||
T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Graveyard | ValidCard$ Card.Self | Execute$ TrigMill | TriggerDescription$ When CARDNAME enters the battlefield or dies, put the top three cards of your library into your graveyard.
|
||||
SVar:TrigMill:DB$Mill | NumCards$ 3 | Defined$ You
|
||||
Oracle:When Stitcher’s Supplier enters the battlefield or dies, put the top three cards of your library into your graveyard.
|
||||
Oracle:When Stitcher's Supplier enters the battlefield or dies, put the top three cards of your library into your graveyard.
|
||||
@@ -3,5 +3,5 @@ ManaCost:U R
|
||||
Types:Legendary Creature Human Artificer
|
||||
PT:1/3
|
||||
K:Haste
|
||||
A:AB$ CopySpellAbility | Cost$ U R T | TargetType$ Activated.YouCtrl,Triggered.YouCtrl | ValidTgts$ Artifact | SpellDescription$ Copy target activated or triggered ability you control from an artifact source. You may choose new targets for the copy. (Mana abilities can’t be targeted.)
|
||||
Oracle:Haste\n{U}{R}, {T}: Copy target activated or triggered ability you control from an artifact source. You may choose new targets for the copy. (Mana abilities can’t be targeted.)
|
||||
A:AB$ CopySpellAbility | Cost$ U R T | TargetType$ Activated.YouCtrl,Triggered.YouCtrl | ValidTgts$ Artifact | SpellDescription$ Copy target activated or triggered ability you control from an artifact source. You may choose new targets for the copy. (Mana abilities can't be targeted.)
|
||||
Oracle:Haste\n{U}{R}, {T}: Copy target activated or triggered ability you control from an artifact source. You may choose new targets for the copy. (Mana abilities can't be targeted.)
|
||||
|
||||
@@ -5,4 +5,4 @@ PT:3/1
|
||||
S:Mode$ Continuous | Affected$ Card.Self | AddKeyword$ Menace | IsPresent$ Planeswalker.Tezzeret+YouCtrl | Description$ As long as you control a Tezzeret planeswalker, CARDNAME has menace.
|
||||
SVar:BuffedBy:Tezzeret
|
||||
DeckNeeds:Type$Tezzeret
|
||||
Oracle:As long as you control a Tezzeret planeswalker, Tezzeret’s Strider has menace. (It can’t be blocked except by two or more creatures.)
|
||||
Oracle:As long as you control a Tezzeret planeswalker, Tezzeret's Strider has menace. (It can't be blocked except by two or more creatures.)
|
||||
|
||||
@@ -6,7 +6,7 @@ A:SP$ PermanentCreature | Cost$ 6 B B Sac<X/Creature> | Announce$ X | References
|
||||
S:Mode$ ReduceCost | ValidCard$ Card.Self | Type$ Spell | Amount$ Y | EffectZone$ All | References$ Y | Description$ As an additional cost to cast this spell, you may sacrifice any number of creatures. This spell costs {2} less to cast for each creature sacrificed as an additional cost.
|
||||
SVar:X:XChoice
|
||||
SVar:Y:SVar$X/Times.2
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigSetLife | TriggerDescription$ When CARDNAME enters the battlefield, up to one target player’s life total becomes half their starting life total, rounded down.
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigSetLife | TriggerDescription$ When CARDNAME enters the battlefield, up to one target player's life total becomes half their starting life total, rounded down.
|
||||
SVar:TrigSetLife:DB$ SetLife | ValidTgts$ Player | LifeAmount$ HalfLife | TargetMin$ 0 | TargetMax$ 1 | References$ HalfLife
|
||||
SVar:HalfLife:TargetedPlayer$StartingLife/HalfDown
|
||||
Oracle:As an additional cost to cast this spell, you may sacrifice any number of creatures. This spell costs {2} less to cast for each creature sacrificed as an additional cost.\nWhen Torgaar, Famine Incarnate enters the battlefield, up to one target player’s life total becomes half their starting life total, rounded down.
|
||||
Oracle:As an additional cost to cast this spell, you may sacrifice any number of creatures. This spell costs {2} less to cast for each creature sacrificed as an additional cost.\nWhen Torgaar, Famine Incarnate enters the battlefield, up to one target player's life total becomes half their starting life total, rounded down.
|
||||
@@ -3,11 +3,11 @@ ManaCost:3 B R G
|
||||
Types:Legendary Creature Elder Dragon
|
||||
PT:6/6
|
||||
K:Flying
|
||||
T:Mode$ Attacks | ValidCard$ Card.Self | Execute$ TrigTarget | TriggerDescription$ Whenever CARDNAME attacks, for each player, choose target permanent that player controls. Those players sacrifice those permanents. Each player who sacrificed a permanent this way reveals the top card of their library, then puts it onto the battlefield if it’s a permanent card.
|
||||
T:Mode$ Attacks | ValidCard$ Card.Self | Execute$ TrigTarget | TriggerDescription$ Whenever CARDNAME attacks, for each player, choose target permanent that player controls. Those players sacrifice those permanents. Each player who sacrificed a permanent this way reveals the top card of their library, then puts it onto the battlefield if it's a permanent card.
|
||||
SVar:TrigTarget:DB$ Pump | ValidTgts$ Permanent | TgtPrompt$ Select target permanent a players controls to be sacrificed. | TargetMin$ OneEach | TargetMax$ OneEach | References$ OneEach | TargetsWithDifferentControllers$ True | SubAbility$ DBSacrificeAll
|
||||
SVar:DBSacrificeAll:DB$ SacrificeAll | Defined$ Targeted | RememberSacrificed$ True | SubAbility$ DBRepeatEach
|
||||
SVar:DBRepeatEach:DB$ RepeatEach | DefinedCards$ Remembered | UseImprinted$ True | RepeatSubAbility$ DBDig | SubAbility$ DBCleanup
|
||||
SVar:DBDig:DB$ Dig | Defined$ ImprintedController | DigNum$ 1 | Reveal$ True | DestinationZone$ Battlefield | DestinationZone2$ Library | LibraryPosition2$ 0 | ChangeNum$ All | ChangeValid$ Permanent
|
||||
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
|
||||
SVar:OneEach:PlayerCountPlayers$Amount
|
||||
Oracle:Flying\nWhenever Vaevictis Asmadi, the Dire attacks, for each player, choose target permanent that player controls. Those players sacrifice those permanents. Each player who sacrificed a permanent this way reveals the top card of their library, then puts it onto the battlefield if it’s a permanent card.
|
||||
Oracle:Flying\nWhenever Vaevictis Asmadi, the Dire attacks, for each player, choose target permanent that player controls. Those players sacrifice those permanents. Each player who sacrificed a permanent this way reveals the top card of their library, then puts it onto the battlefield if it's a permanent card.
|
||||
@@ -7,5 +7,5 @@ SVar:TailDamage:DB$ DealDamage | ValidTgts$ Creature.YouDontCtrl | AILogic$ Powe
|
||||
SVar:X:ParentTargeted$CardPower
|
||||
A:AB$ PumpAll | Cost$ SubCounter<9/LOYALTY> | Planeswalker$ True | Ultimate$ True | ValidCards$ Creature.YouCtrl | NumAtt$ +4 | NumDef$ +4 | KW$ Trample | SpellDescription$ Creatures you control get +4/+4 and gain trample until end of turn.
|
||||
DeckHas:Ability$Token
|
||||
Oracle:[+2]: Put two +1/+1 counters on up to one target creature.\n [−3]: Target creature you control deals damage equal to its power to target creature you don’t control.\n[−9]: Creatures you control get +4/+4 and gain trample until end of turn.
|
||||
Oracle:[+2]: Put two +1/+1 counters on up to one target creature.\n [−3]: Target creature you control deals damage equal to its power to target creature you don't control.\n[−9]: Creatures you control get +4/+4 and gain trample until end of turn.
|
||||
Loyalty:5
|
||||
@@ -7,7 +7,7 @@ T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.S
|
||||
SVar:TrigChoose:DB$ ChoosePlayer | Defined$ You | Choices$ Player.Opponent | ChoiceTitle$ Choose an opponent to give control to: | AILogic$ Curse | SubAbility$ DBDonate
|
||||
SVar:DBDonate:DB$ GainControl | Defined$ Self | NewController$ Player.Chosen | SubAbility$ DBCleanup
|
||||
SVar:DBCleanup:DB$ Cleanup | ClearChosenPlayer$ True
|
||||
S:Mode$ CantAttack | ValidCard$ Card.Self | Target$ Player.CardOwner,Planeswalker.ControlledBy Player.CardOwner | Description$ CARDNAME can’t attack its owner or planeswalkers its owner controls.
|
||||
A:AB$ Draw | Cost$ 3 | NumCards$ 1 | AnyPlayer$ True | SubAbility$ DBLoseLife | SpellDescription$ Xantcha’s controller loses 2 life and you draw a card. Any player may activate this ability.
|
||||
S:Mode$ CantAttack | ValidCard$ Card.Self | Target$ Player.CardOwner,Planeswalker.ControlledBy Player.CardOwner | Description$ CARDNAME can't attack its owner or planeswalkers its owner controls.
|
||||
A:AB$ Draw | Cost$ 3 | NumCards$ 1 | AnyPlayer$ True | SubAbility$ DBLoseLife | SpellDescription$ Xantcha's controller loses 2 life and you draw a card. Any player may activate this ability.
|
||||
SVar:DBLoseLife:DB$ LoseLife | LifeAmount$ 2 | Defined$ CardController
|
||||
Oracle:As Xantcha, Sleeper Agent enters the battlefield, an opponent of your choice gains control of it.\nXantcha attacks each combat if able and can’t attack its owner or planeswalkers its owner controls.\n{3}: Xantcha’s controller loses 2 life and you draw a card. Any player may activate this ability.
|
||||
Oracle:As Xantcha, Sleeper Agent enters the battlefield, an opponent of your choice gains control of it.\nXantcha attacks each combat if able and can't attack its owner or planeswalkers its owner controls.\n{3}: Xantcha's controller loses 2 life and you draw a card. Any player may activate this ability.
|
||||
@@ -3,5 +3,5 @@ ManaCost:4 U U
|
||||
Types:Legendary Creature Djinn
|
||||
PT:5/6
|
||||
K:Flying
|
||||
SVar:AltCost:Cost$ 3 U tapXType<1/Artifact> | Description$ You may pay {3}{U} and tap an untapped artifact you control rather than pay this spell’s mana cost.
|
||||
Oracle:You may pay {3}{U} and tap an untapped artifact you control rather than pay this spell’s mana cost.\nFlying
|
||||
SVar:AltCost:Cost$ 3 U tapXType<1/Artifact> | Description$ You may pay {3}{U} and tap an untapped artifact you control rather than pay this spell's mana cost.
|
||||
Oracle:You may pay {3}{U} and tap an untapped artifact you control rather than pay this spell's mana cost.\nFlying
|
||||
|
||||
@@ -2,7 +2,7 @@ Name:Alara|RegionSize:9|Desc:As the boundaries between the shards dissolve, cult
|
||||
Name:Amonkhet|RegionSize:9|Desc:On the surface, Amonkhet seems like a marvelous place to live, but something unsettling and nefarious lurks behind the grand facade.\nConsists of 45 events. Contains cards from AKH, HOU, some C17, and Amonkhet Invocations.
|
||||
Name:Dominaria|RegionSize:9|Unreachable:True|Desc:
|
||||
Name:Innistrad|RegionSize:9|Desc:On this plane, humanity is terrorized by vampires, werewolves, zombies, and ghouls.\nConsists of 45 events. Contains cards from ISD, DKA, AVR, SOI, EMN, and C14.
|
||||
Name:Ixalan|RegionSize:9|Desc:On Ixalan, the untamed jungles have hidden a coveted secret: Orazca, the city of gold, and rivals embark on a journey to claim the plane’s greatest fortune for themselves.\nConsists of 45 events. Contains cards from XLN, RIX.
|
||||
Name:Ixalan|RegionSize:9|Desc:On Ixalan, the untamed jungles have hidden a coveted secret: Orazca, the city of gold, and rivals embark on a journey to claim the plane's greatest fortune for themselves.\nConsists of 45 events. Contains cards from XLN, RIX.
|
||||
Name:Kaladesh|RegionSize:9|Desc:Kaladesh is a living work of art. Aether is inextricably woven into the world's culture of inspired invention.\nConsists of 45 events. Contains cards from KLD, AER, some C17, and Kaladesh Inventions.
|
||||
Name:Kamigawa|RegionSize:6|Unreachable:True|Desc:For hundreds of years, Kamigawa's denizens peacefully worshipped the spirits of their world. Then suddenly their gods attacked, forcing the world into brutal war.\nContains cards from CHK, BOK, and SOK.
|
||||
Name:Lorwyn-Shadowmoor|RegionSize:9|Desc:A sunny utopia with a thriving storybook community, or a battle-wrought land cursed to perpetual gloom.\nConsists of 72 events. Contains cards from LRW, MOR, SHM, EVE, CNS/CN2, and C14.
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -135,119 +135,124 @@
|
||||
#134|Collar the Culprit|C|GRN
|
||||
#135|Thought Erasure|U|GRN
|
||||
#136|Necrotic Wound|U|GRN
|
||||
#137|Hammer Dropper|C|GRN
|
||||
#138|Dimir Informant|C|GRN
|
||||
#139|Guild Summit|U|GRN
|
||||
#140|Vivid Revival|R|GRN
|
||||
#141|Guildmages' Forum|R|GRN
|
||||
#142|Molderhulk|U|GRN
|
||||
#143|Gruesome Menagerie|R|GRN
|
||||
#144|Centaur Peacemaker|C|GRN
|
||||
#145|Darkblade Agent|C|GRN
|
||||
#146|Wojek Bodyguard|C|GRN
|
||||
#147|Ochran Assassin|U|GRN
|
||||
#148|Circuitous Route|U|GRN
|
||||
#149|Loxodon Restorer|C|GRN
|
||||
#150|Haazda Marshal|U|GRN
|
||||
#151|Rhizome Lurcher|C|GRN
|
||||
#152|Might of the Masses|U|GRN
|
||||
#153|Generous Stray|C|GRN
|
||||
#154|Wild Ceratok|C|GRN
|
||||
#155|Ironshell Beetle|C|GRN
|
||||
#156|Smelt-Ward Minotaur|U|GRN
|
||||
#157|Rubblebelt Boar|C|GRN
|
||||
#158|Cosmotronic Wave|C|GRN
|
||||
#159|Muse Drake|C|GRN
|
||||
#160|Sworn Companions|C|GRN
|
||||
#161|Skyline Scout|C|GRN
|
||||
#162|Righteous Blow|C|GRN
|
||||
#163|Intrusive Packbeast|C|GRN
|
||||
#164|Sinister Sabotage|U|GRN
|
||||
#165|Barging Sergeant|C|GRN
|
||||
#166|Sonic Assault|C|GRN
|
||||
#167|Goblin Electromancer|C|GRN
|
||||
#168|Sumala Woodshaper|C|GRN
|
||||
#169|Fresh-Faced Recruit|C|GRN
|
||||
#170|Bounty Agent|R|GRN
|
||||
#171|Blade Instructor|C|GRN
|
||||
#172|Gateway Plaza|C|GRN
|
||||
#173|Disdainful Stroke|C|GRN
|
||||
#174|Mission Briefing|R|GRN
|
||||
#175|Lotleth Giant|U|GRN
|
||||
#176|Book Devourer|U|GRN
|
||||
#177|Sprouting Renewal|U|GRN
|
||||
#178|Worldsoul Colossus|U|GRN
|
||||
#179|Beamsplitter Mage|U|GRN
|
||||
#180|Vernadi Shieldmate|C|GRN
|
||||
#181|Pitiless Gorgon|C|GRN
|
||||
#182|Vigorspore Wurm|C|GRN
|
||||
#183|Pack's Favor|C|GRN
|
||||
#184|Hitchclaw Recluse|C|GRN
|
||||
#185|Sure Strike|C|GRN
|
||||
#186|Fire Urchin|C|GRN
|
||||
#187|Pilfering Imp|U|GRN
|
||||
#188|Douser of Lights|C|GRN
|
||||
#189|Bartizan Bats|C|GRN
|
||||
#190|Leapfrog|C|GRN
|
||||
#191|Take Heart|C|GRN
|
||||
#192|Devkarin Dissident|C|GRN
|
||||
#193|Radical Idea|C|GRN
|
||||
#194|Golgari Raiders|U|GRN
|
||||
#195|Ledev Guardian|C|GRN
|
||||
#196|Chance for Glory|M|GRN
|
||||
#197|Kraul Foragers|C|GRN
|
||||
#198|Erstwhile Trooper|C|GRN
|
||||
#199|Street Riot|U|GRN
|
||||
#200|Ornery Goblin|C|GRN
|
||||
#201|Gravitic Punch|C|GRN
|
||||
#202|Child of Night|C|GRN
|
||||
#203|Dazzling Lights|C|GRN
|
||||
#204|Tenth District Guard|C|GRN
|
||||
#205|Moodmark Painter|C|GRN
|
||||
#206|Izzet Locket|C|GRN
|
||||
#207|Selesnya Locket|C|GRN
|
||||
#208|Golgari Locket|C|GRN
|
||||
#209|Dimir Locket|C|GRN
|
||||
#210|Boros Locket|C|GRN
|
||||
#211|Maximize Altitude|C|GRN
|
||||
#212|Passwall Adept|C|GRN
|
||||
#213|Garrison Sergeant|C|GRN
|
||||
#214|Omnispell Adept|R|GRN
|
||||
#215|Join Shields|U|GRN
|
||||
#216|Mnemonic Betrayal|M|GRN
|
||||
#217|Electrostatic Field|U|GRN
|
||||
#218|Urban Utopia|C|GRN
|
||||
#219|Portcullis Vine|C|GRN
|
||||
#220|Fearless Halberdier|C|GRN
|
||||
#221|Veiled Shade|C|GRN
|
||||
#222|Vedalken Mesmerist|C|GRN
|
||||
#223|Wary Okapi|C|GRN
|
||||
#224|Mausoleum Secrets|R|GRN
|
||||
#225|Glaive of the Guildpact|U|GRN
|
||||
#226|Maximize Velocity|C|GRN
|
||||
#227|Divine Visitation|M|GRN
|
||||
#228|Devious Cover-Up|C|GRN
|
||||
#229|Goblin Locksmith|C|GRN
|
||||
#230|Drowned Secrets|R|GRN
|
||||
#231|Grappling Sundew|U|GRN
|
||||
#232|Crushing Canopy|C|GRN
|
||||
#233|Maniacal Rage|C|GRN
|
||||
#234|Mephitic Vapors|C|GRN
|
||||
#235|Wishcoin Crab|C|GRN
|
||||
#236|Wall of Mist|C|GRN
|
||||
#237|Candlelight Vigil|C|GRN
|
||||
#238|Narcomoeba|R|GRN
|
||||
#239|Never Happened|C|GRN
|
||||
#240|Thousand-Year Storm|M|GRN
|
||||
#241|Silent Dart|U|GRN
|
||||
#242|Torch Courier|C|GRN
|
||||
#243|Barrier of Bones|C|GRN
|
||||
#244|Crush Contraband|U|GRN
|
||||
#245|Wand of Vertebrae|U|GRN
|
||||
#246|Creeping Chill|U|GRN
|
||||
#247|Pause for Reflection|C|GRN
|
||||
#248|Vicious Rumors|C|GRN
|
||||
#249|Unmoored Ego|R|GRN
|
||||
#137|Boros Guildgate|C|GRN
|
||||
#138|Dimir Guildgate|C|GRN
|
||||
#139|Golgari Guildgate|C|GRN
|
||||
#140|Izzet Guildgate|C|GRN
|
||||
#141|Selesnya Guildgate|C|GRN
|
||||
#142|Hammer Dropper|C|GRN
|
||||
#143|Dimir Informant|C|GRN
|
||||
#144|Guild Summit|U|GRN
|
||||
#145|Vivid Revival|R|GRN
|
||||
#146|Guildmages' Forum|R|GRN
|
||||
#147|Molderhulk|U|GRN
|
||||
#148|Gruesome Menagerie|R|GRN
|
||||
#149|Centaur Peacemaker|C|GRN
|
||||
#150|Darkblade Agent|C|GRN
|
||||
#151|Wojek Bodyguard|C|GRN
|
||||
#152|Ochran Assassin|U|GRN
|
||||
#153|Circuitous Route|U|GRN
|
||||
#154|Loxodon Restorer|C|GRN
|
||||
#155|Haazda Marshal|U|GRN
|
||||
#156|Rhizome Lurcher|C|GRN
|
||||
#157|Might of the Masses|U|GRN
|
||||
#158|Generous Stray|C|GRN
|
||||
#159|Wild Ceratok|C|GRN
|
||||
#160|Ironshell Beetle|C|GRN
|
||||
#161|Smelt-Ward Minotaur|U|GRN
|
||||
#162|Rubblebelt Boar|C|GRN
|
||||
#163|Cosmotronic Wave|C|GRN
|
||||
#164|Muse Drake|C|GRN
|
||||
#165|Sworn Companions|C|GRN
|
||||
#166|Skyline Scout|C|GRN
|
||||
#167|Righteous Blow|C|GRN
|
||||
#168|Intrusive Packbeast|C|GRN
|
||||
#169|Sinister Sabotage|U|GRN
|
||||
#170|Barging Sergeant|C|GRN
|
||||
#171|Sonic Assault|C|GRN
|
||||
#172|Goblin Electromancer|C|GRN
|
||||
#173|Sumala Woodshaper|C|GRN
|
||||
#174|Fresh-Faced Recruit|C|GRN
|
||||
#175|Bounty Agent|R|GRN
|
||||
#176|Blade Instructor|C|GRN
|
||||
#177|Gateway Plaza|C|GRN
|
||||
#178|Disdainful Stroke|C|GRN
|
||||
#179|Mission Briefing|R|GRN
|
||||
#180|Lotleth Giant|U|GRN
|
||||
#181|Book Devourer|U|GRN
|
||||
#182|Sprouting Renewal|U|GRN
|
||||
#183|Worldsoul Colossus|U|GRN
|
||||
#184|Beamsplitter Mage|U|GRN
|
||||
#185|Vernadi Shieldmate|C|GRN
|
||||
#186|Pitiless Gorgon|C|GRN
|
||||
#187|Vigorspore Wurm|C|GRN
|
||||
#188|Pack's Favor|C|GRN
|
||||
#189|Hitchclaw Recluse|C|GRN
|
||||
#190|Sure Strike|C|GRN
|
||||
#191|Fire Urchin|C|GRN
|
||||
#192|Pilfering Imp|U|GRN
|
||||
#193|Douser of Lights|C|GRN
|
||||
#194|Bartizan Bats|C|GRN
|
||||
#195|Leapfrog|C|GRN
|
||||
#196|Take Heart|C|GRN
|
||||
#197|Devkarin Dissident|C|GRN
|
||||
#198|Radical Idea|C|GRN
|
||||
#199|Golgari Raiders|U|GRN
|
||||
#200|Ledev Guardian|C|GRN
|
||||
#201|Chance for Glory|M|GRN
|
||||
#202|Kraul Foragers|C|GRN
|
||||
#203|Erstwhile Trooper|C|GRN
|
||||
#204|Street Riot|U|GRN
|
||||
#205|Ornery Goblin|C|GRN
|
||||
#206|Gravitic Punch|C|GRN
|
||||
#207|Child of Night|C|GRN
|
||||
#208|Dazzling Lights|C|GRN
|
||||
#209|Tenth District Guard|C|GRN
|
||||
#210|Moodmark Painter|C|GRN
|
||||
#211|Izzet Locket|C|GRN
|
||||
#212|Selesnya Locket|C|GRN
|
||||
#213|Golgari Locket|C|GRN
|
||||
#214|Dimir Locket|C|GRN
|
||||
#215|Boros Locket|C|GRN
|
||||
#216|Maximize Altitude|C|GRN
|
||||
#217|Passwall Adept|C|GRN
|
||||
#218|Garrison Sergeant|C|GRN
|
||||
#219|Omnispell Adept|R|GRN
|
||||
#220|Join Shields|U|GRN
|
||||
#221|Mnemonic Betrayal|M|GRN
|
||||
#222|Electrostatic Field|U|GRN
|
||||
#223|Urban Utopia|C|GRN
|
||||
#224|Portcullis Vine|C|GRN
|
||||
#225|Fearless Halberdier|C|GRN
|
||||
#226|Veiled Shade|C|GRN
|
||||
#227|Vedalken Mesmerist|C|GRN
|
||||
#228|Wary Okapi|C|GRN
|
||||
#229|Mausoleum Secrets|R|GRN
|
||||
#230|Glaive of the Guildpact|U|GRN
|
||||
#231|Maximize Velocity|C|GRN
|
||||
#232|Divine Visitation|M|GRN
|
||||
#233|Devious Cover-Up|C|GRN
|
||||
#234|Goblin Locksmith|C|GRN
|
||||
#235|Drowned Secrets|R|GRN
|
||||
#236|Grappling Sundew|U|GRN
|
||||
#237|Crushing Canopy|C|GRN
|
||||
#238|Maniacal Rage|C|GRN
|
||||
#239|Mephitic Vapors|C|GRN
|
||||
#240|Wishcoin Crab|C|GRN
|
||||
#241|Wall of Mist|C|GRN
|
||||
#242|Candlelight Vigil|C|GRN
|
||||
#243|Narcomoeba|R|GRN
|
||||
#244|Never Happened|C|GRN
|
||||
#245|Thousand-Year Storm|M|GRN
|
||||
#246|Silent Dart|U|GRN
|
||||
#247|Torch Courier|C|GRN
|
||||
#248|Barrier of Bones|C|GRN
|
||||
#249|Crush Contraband|U|GRN
|
||||
#250|Wand of Vertebrae|U|GRN
|
||||
#251|Creeping Chill|U|GRN
|
||||
#252|Pause for Reflection|C|GRN
|
||||
#253|Vicious Rumors|C|GRN
|
||||
#254|Unmoored Ego|R|GRN
|
||||
//Rank|Name|Rarity|Set
|
||||
#1|Chromium, the Mutable|M|M19
|
||||
#2|Palladia-Mors, the Ruiner|M|M19
|
||||
@@ -20313,7 +20318,7 @@
|
||||
#22|Shock|C|STH
|
||||
#23|Mana Leak|C|STH
|
||||
#24|Skeleton Scavengers|R|STH
|
||||
#25|Volrath’s Stronghold|R|STH
|
||||
#25|Volrath's Stronghold|R|STH
|
||||
#26|Mindwarper|R|STH
|
||||
#27|Volrath's Shapeshifter|R|STH
|
||||
#28|Shaman en-Kor|R|STH
|
||||
|
||||
@@ -3,4 +3,4 @@ Name:Legacy
|
||||
Order:105
|
||||
Subtype:Legacy
|
||||
Type:Sanctioned
|
||||
Banned:Adriana's Valor; Advantageous Proclamation; Assemble the Rank and Vile; Backup Plan; Brago's Favor; Double Stroke; Echoing Boon; Emissary's Ploy; Hired Heist; Hold the Perimeter; Hymn of the Wilds; Immediate Action; Incendiary Dissent; Iterative Analysis; Muzzio's Preparations; Natural Unity; Power Play; Secret Summoning; Secrets of Paradise; Sentinel Dispatch; Sovereign's Realm; Summoner's Bond; Unexpected Potential; Weight Advantage; Worldknit; Amulet of Quoz; Bronze Tablet; Contract from Below; Darkpact; Demonic Attorney; Jeweled Bird; Rebirth; Tempest Efreet; Timmerian Fiends; Ancestral Recall; Balance; Bazaar of Baghdad; Black Lotus; Channel; Chaos Orb; Demonic Consultation; Demonic Tutor; Dig Through Time; Earthcraft; Falling Star; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mental Misstep; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Sensei's Divining Top; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Survival of the Fittest; Time Vault; Time Walk; Timetwister; Tinker; Tolarian Academy; Treasure Cruise; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will
|
||||
Banned:Adriana's Valor; Advantageous Proclamation; Assemble the Rank and Vile; Backup Plan; Brago's Favor; Deathrite Shaman; Double Stroke; Echoing Boon; Emissary's Ploy; Gitaxian Probe; Hired Heist; Hold the Perimeter; Hymn of the Wilds; Immediate Action; Incendiary Dissent; Iterative Analysis; Muzzio's Preparations; Natural Unity; Power Play; Secret Summoning; Secrets of Paradise; Sentinel Dispatch; Sovereign's Realm; Summoner's Bond; Unexpected Potential; Weight Advantage; Worldknit; Amulet of Quoz; Bronze Tablet; Contract from Below; Darkpact; Demonic Attorney; Jeweled Bird; Rebirth; Tempest Efreet; Timmerian Fiends; Ancestral Recall; Balance; Bazaar of Baghdad; Black Lotus; Channel; Chaos Orb; Demonic Consultation; Demonic Tutor; Dig Through Time; Earthcraft; Falling Star; Fastbond; Flash; Frantic Search; Goblin Recruiter; Gush; Hermit Druid; Imperial Seal; Library of Alexandria; Mana Crypt; Mana Drain; Mana Vault; Memory Jar; Mental Misstep; Mind Twist; Mind's Desire; Mishra's Workshop; Mox Emerald; Mox Jet; Mox Pearl; Mox Ruby; Mox Sapphire; Mystical Tutor; Necropotence; Oath of Druids; Sensei's Divining Top; Shahrazad; Skullclamp; Sol Ring; Strip Mine; Survival of the Fittest; Time Vault; Time Walk; Timetwister; Tinker; Tolarian Academy; Treasure Cruise; Vampiric Tutor; Wheel of Fortune; Windfall; Yawgmoth's Bargain; Yawgmoth's Will
|
||||
|
||||
@@ -4,7 +4,7 @@ URL:https://i0.wp.com/www.possibilitystorm.com/wp-content/uploads/2018/10/083.-G
|
||||
Goal:Win
|
||||
Turns:1
|
||||
Difficulty:Rare
|
||||
Description:Win this turn. When this puzzle starts, you will be prompted to pay 2 life for Sacred Foundry, you should choose "No" (Sacred Foundry will be placed on the battlefield untapped regardless).
|
||||
Description:Win this turn.
|
||||
[state]
|
||||
humanlife=20
|
||||
ailife=5
|
||||
@@ -12,5 +12,5 @@ turn=1
|
||||
activeplayer=human
|
||||
activephase=MAIN1
|
||||
humanhand=Heroic Reinforcements;Aurelia, Exemplar of Justice;Garna, the Bloodflame;Deafening Clarion;Vraska's Contempt
|
||||
humanbattlefield=Blade Instructor;Goblin Banneret;Barging Sergeant;Angrath, the Flame-Chained|Counters:LOYALTY=5;Sacred Foundry;Sacred Foundry;Sacred Foundry;Sacred Foundry;Dragonskull Summit;Dragonskull Summit
|
||||
humanbattlefield=Blade Instructor;Goblin Banneret;Barging Sergeant;Angrath, the Flame-Chained|Counters:LOYALTY=5;Sacred Foundry|Set:GRN|NoETBTrigs;Sacred Foundry|Set:GRN|NoETBTrigs;Sacred Foundry|Set:GRN|NoETBTrigs;Sacred Foundry|Set:GRN|NoETBTrigs;Dragonskull Summit;Dragonskull Summit
|
||||
aibattlefield=Josu Vess, Lich Knight;t:Zombie Knight,P:2,T:2,Cost:no cost,Color:B,Types:Creature-Zombie-Knight,Keywords:Menace,Image:b_2_2_zombie_knight_dom;t:Zombie Knight,P:2,T:2,Cost:no cost,Color:B,Types:Creature-Zombie-Knight,Keywords:Menace,Image:b_2_2_zombie_knight_dom;t:Zombie Knight,P:2,T:2,Cost:no cost,Color:B,Types:Creature-Zombie-Knight,Keywords:Menace,Image:b_2_2_zombie_knight_dom;t:Zombie Knight,P:2,T:2,Cost:no cost,Color:B,Types:Creature-Zombie-Knight,Keywords:Menace,Image:b_2_2_zombie_knight_dom;t:Zombie Knight,P:2,T:2,Cost:no cost,Color:B,Types:Creature-Zombie-Knight,Keywords:Menace,Image:b_2_2_zombie_knight_dom;t:Zombie Knight,P:2,T:2,Cost:no cost,Color:B,Types:Creature-Zombie-Knight,Keywords:Menace,Image:b_2_2_zombie_knight_dom;t:Zombie Knight,P:2,T:2,Cost:no cost,Color:B,Types:Creature-Zombie-Knight,Keywords:Menace,Image:b_2_2_zombie_knight_dom;t:Zombie Knight,P:2,T:2,Cost:no cost,Color:B,Types:Creature-Zombie-Knight,Keywords:Menace,Image:b_2_2_zombie_knight_dom
|
||||
|
||||
17
forge-gui/res/puzzle/PS_GRN2.pzl
Normal file
17
forge-gui/res/puzzle/PS_GRN2.pzl
Normal file
@@ -0,0 +1,17 @@
|
||||
[metadata]
|
||||
Name:Possibility Storm - Guilds of Ravnica #02
|
||||
URL:https://i1.wp.com/www.possibilitystorm.com/wp-content/uploads/2018/10/084.-GRN2.jpg
|
||||
Goal:Win
|
||||
Turns:1
|
||||
Difficulty:Rare
|
||||
Description:Win this turn. Assume you have no instant or sorcery spells left in your library.
|
||||
[state]
|
||||
humanlife=20
|
||||
ailife=12
|
||||
turn=1
|
||||
activeplayer=human
|
||||
activephase=MAIN1
|
||||
humanhand=Arclight Phoenix;Sonic Assault;Invert // Invent;Response // Resurgence
|
||||
humanlibrary=Plains|Set:GRN;Island|Set:GRN;Swamp|Set:GRN;Mountain|Set:GRN;Forest|Set:GRN
|
||||
humanbattlefield=Runaway Steam-Kin|Counters:P1P1=1|Id:1;Tilonalli's Crown|Attaching:1;Rampaging Monument|Counters:P1P1=3;Sacred Foundry|Set:GRN|NoETBTrigs;Sacred Foundry|Set:GRN|NoETBTrigs;Steam Vents|Set:GRN|NoETBTrigs;Steam Vents|Set:GRN|NoETBTrigs;Izzet Guildgate|Set:GRN;Izzet Guildgate|Set:GRN
|
||||
aibattlefield=Looming Altisaur;Territorial Allosaurus;Verdant Sun's Avatar;Polyraptor;Emissary of Sunrise|Id:2;Forebear's Blade|Attaching:2
|
||||
Reference in New Issue
Block a user