Add oracle property to all files

master
ShawnieBoyUK@gmail.com 2014-05-17 18:15:27 +01:00
parent e9bdb914b7
commit 8003aadde2
6537 changed files with 6499 additions and 680 deletions

View File

@ -1,11 +0,0 @@
name=AErathi Berserker
url=http://magiccards.info/query?q=%21aerathi%20berserker
image=http://mtgimage.com/card/aerathi%20berserker.jpg
value=2.344
rarity=U
type=Creature
subtype=Human,Berserker
cost={2}{R}{R}{R}
pt=2/4
ability=rampage 3
timing=main

View File

@ -1,12 +0,0 @@
name=AEther Adept
url=http://magiccards.info/query?q=%21aether%20adept
image=http://mtgimage.com/card/aether%20adept.jpg
value=3.611
removal=2
rarity=C
type=Creature
subtype=Human,Wizard
cost={1}{U}{U}
pt=2/2
ability=When SN enters the battlefield, return target creature to its owner's hand.
timing=fmain

View File

@ -1,29 +0,0 @@
[
new MagicWhenOtherSpellIsCastTrigger() {
@Override
public MagicEvent executeTrigger(final MagicGame game,final MagicPermanent permanent,final MagicCardOnStack cardOnStack) {
return (cardOnStack.hasType(MagicType.Creature)) ?
new MagicEvent(
permanent,
cardOnStack.getController(),
new MagicMayChoice(
"Pay {1}?",
new MagicPayManaCostChoice(MagicManaCost.create("{1}"))
),
this,
"PN may\$ pay {1}\$. If PN doesn't, PN sacrifices a permanent."
):
MagicEvent.NONE;
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
if (event.isNo()) {
game.addEvent(new MagicSacrificePermanentEvent(
event.getPermanent(),
event.getPlayer(),
MagicTargetChoice.SACRIFICE_PERMANENT
));
}
}
}
]

View File

@ -1,9 +0,0 @@
name=AEther Barrier
url=http://magiccards.info/query?q=%21aether%20barrier
image=http://mtgimage.com/card/aether%20barrier.jpg
value=3.833
rarity=R
type=Enchantment
cost={2}{U}
timing=enchantment
requires_groovy_code

View File

@ -1,28 +0,0 @@
[
new MagicWhenOtherComesIntoPlayTrigger() {
@Override
public MagicEvent executeTrigger(final MagicGame game,final MagicPermanent permanent,final MagicPermanent otherPermanent) {
return (otherPermanent.hasSubType(MagicSubType.Beast) &&
otherPermanent.isFriend(permanent)) ?
new MagicEvent(
permanent,
new MagicMayChoice(MagicTargetChoice.TARGET_OPPONENT),
otherPermanent,
this,
"You may\$ have RN deal 4 damage to target opponent\$"
):
MagicEvent.NONE;
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
if (event.isYes()) {
event.processTargetPlayer(game,{
final MagicPlayer player ->
final MagicDamage damage = new MagicDamage(event.getRefPermanent(),player,4);
game.doAction(new MagicDealDamageAction(damage));
});
}
}
}
]

View File

@ -1,10 +0,0 @@
name=AEther Charge
url=http://magiccards.info/query?q=%21%C3%86ther+Charge
image=http://mtgimage.com/card/aether%20charge.jpg
value=2.500
rarity=U
type=Enchantment
cost={4}{R}
timing=main
oracle=Whenever a Beast enters the battlefield under your control, you may have it deal 4 damage to target opponent.
requires_groovy_code

View File

@ -1,16 +0,0 @@
[
new MagicWhenComesIntoPlayTrigger() {
@Override
public MagicEvent executeTrigger(final MagicGame game, final MagicPermanent permanent, final MagicPayedCost payedCost) {
if (payedCost.isKicked()) {
game.doAction(new MagicChangeCountersAction(
permanent,
MagicCounterType.PlusOne,
2,
true
));
}
return MagicEvent.NONE;
}
}
]

View File

@ -1,12 +0,0 @@
name=AEther Figment
url=http://magiccards.info/query?q=%21aether%20figment
image=http://mtgimage.com/card/aether%20figment.jpg
value=4.214
rarity=U
type=Creature
subtype=Illusion
cost={1}{U}
pt=1/1
ability=SN can't be blocked.;kicker {3}
timing=main
requires_groovy_code

View File

@ -1,27 +0,0 @@
[
new MagicWhenOtherComesIntoPlayTrigger() {
@Override
public MagicEvent executeTrigger(
final MagicGame game,
final MagicPermanent permanent,
final MagicPermanent otherPermanent) {
return (otherPermanent.isCreature()) ?
new MagicEvent(
permanent,
otherPermanent,
this,
"SN deals 2 damage to RN."
) :
MagicEvent.NONE;
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
final MagicDamage damage = new MagicDamage(
event.getSource(),
event.getRefPermanent(),
2
);
game.doAction(new MagicDealDamageAction(damage));
}
}
]

View File

@ -1,9 +0,0 @@
name=AEther Flash
url=http://magiccards.info/query?q=%21aether%20flash
image=http://mtgimage.com/card/aether%20flash.jpg
value=4.282
rarity=U
type=Enchantment
cost={2}{R}{R}
timing=enchantment
requires_groovy_code

View File

@ -1,26 +0,0 @@
[
new MagicWhenBlocksTrigger() {
@Override
public MagicEvent executeTrigger(final MagicGame game,final MagicPermanent permanent,final MagicPermanent blocker) {
final MagicPermanent blocked = permanent.getBlockedCreature();
return (permanent == blocker && blocked.isValid()) ?
new MagicEvent(
permanent,
blocked,
this,
"Return RN to its owner's hand at end of combat."
):
MagicEvent.NONE;
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
event.processRefPermanent(game, {
final MagicPermanent permanent ->
game.doAction(new MagicAddTriggerAction(
permanent,
MagicAtEndOfCombatTrigger.Return
))
});
}
}
]

View File

@ -1,12 +0,0 @@
name=AEther Membrane
url=http://magiccards.info/query?q=%21aether%20membrane
image=http://mtgimage.com/card/aether%20membrane.jpg
value=3.712
rarity=U
type=Creature
subtype=Wall
cost={1}{R}{R}
pt=0/5
ability=defender;reach
timing=smain
requires_groovy_code

View File

@ -1,27 +0,0 @@
[
new MagicSpellCardEvent() {
@Override
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
return new MagicEvent(
cardOnStack,
MagicTargetChoice.NEG_TARGET_CREATURE,
MagicBounceTargetPicker.create(),
this,
"Return target creature\$ to its owner's hand. " +
"Put X 1/1 green Saproling creature tokens onto the battlefield, where X is that creature's converted mana cost."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
event.processTargetPermanent(game, {
final MagicPermanent permanent ->
game.doAction(new MagicRemoveFromPlayAction(permanent,MagicLocationType.OwnersHand));
game.doAction(new MagicPlayTokensAction(
event.getPlayer(),
TokenCardDefinitions.get("1/1 green Saproling creature token"),
permanent.getConvertedCost()
));
});
}
}
]

View File

@ -1,10 +0,0 @@
name=AEther Mutation
url=http://magiccards.info/query?q=%21aether%20mutation
image=http://mtgimage.com/card/aether%20mutation.jpg
value=3.959
rarity=U
type=Sorcery
cost={3}{G}{U}
timing=removal
removal=2
requires_groovy_code

View File

@ -1,10 +0,0 @@
name=AEther Spellbomb
url=http://magiccards.info/query?q=%21aether%20spellbomb
image=http://mtgimage.com/card/aether%20spellbomb.jpg
value=4.347
rarity=C
type=Artifact
cost={1}
ability={U},Sacrifice SN: Return target creature to its owner's hand.;\
{1},Sacrifice SN: Draw a card.
timing=artifact

View File

@ -1,24 +0,0 @@
[
new MagicWhenOtherSpellIsCastTrigger() {
@Override
public MagicEvent executeTrigger(final MagicGame game,final MagicPermanent permanent,final MagicCardOnStack cardOnStack) {
return (cardOnStack.isEnemy(permanent) && cardOnStack.hasType(MagicType.Creature)) ?
new MagicEvent(
permanent,
cardOnStack.getController(),
this,
"SN deals 1 damage to PN."
):
MagicEvent.NONE;
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
final MagicDamage damage = new MagicDamage(
event.getSource(),
event.getPlayer(),
1
);
game.doAction(new MagicDealDamageAction(damage));
}
}
]

View File

@ -1,9 +0,0 @@
name=AEther Sting
url=http://magiccards.info/query?q=%21aether%20sting
image=http://mtgimage.com/card/aether%20sting.jpg
value=3.589
rarity=U
type=Enchantment
cost={3}{R}
timing=enchantment
requires_groovy_code

View File

@ -1,42 +0,0 @@
[
new MagicPermanentActivation(
new MagicActivationHints(MagicTiming.Token),
"Put"
) {
@Override
public Iterable<MagicEvent> getCostEvent(final MagicPermanent source) {
return [new MagicTapEvent(source)];
}
@Override
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
final MagicTargetChoice targetChoice = new MagicTargetChoice(
new MagicCMCCardFilter(
MagicTargetFilterFactory.CREATURE_CARD_FROM_HAND,
Operator.EQUAL,
source.getCounters(MagicCounterType.Charge)
),
MagicTargetHint.None,
"a creature card from your hand"
);
return new MagicEvent(
source,
targetChoice,
MagicGraveyardTargetPicker.PutOntoBattlefield,
this,
"PN puts a creature card\$ with converted mana cost equal to " +
"the number of charge counters on SN from his or her hand onto the battlefield."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
event.processTargetCard(game, {
final MagicCard card ->
game.doAction(new MagicRemoveCardAction(card,MagicLocationType.OwnersHand));
game.doAction(new MagicPlayCardAction(card,event.getPlayer()));
});
}
}
]

View File

@ -1,10 +0,0 @@
name=AEther Vial
url=http://magiccards.info/query?q=%21aether%20vial
image=http://mtgimage.com/card/aether%20vial.jpg
value=4.500
rarity=U
type=Artifact
cost={1}
timing=main
ability=At the beginning of your upkeep, you may put a charge counter on SN.
requires_groovy_code

View File

@ -1,12 +0,0 @@
name=AEther Web
url=http://magiccards.info/query?q=%21aether%20web
image=http://mtgimage.com/card/aether%20web.jpg
value=3.289
rarity=C
type=Enchantment
subtype=Aura
cost={1}{G}
ability=Flash;\
Enchanted creature gets +1/+1, has reach, and can block creatures with shadow as though they didn't have shadow.
timing=pumpFlash
enchant=pump,pos creature

View File

@ -1,13 +0,0 @@
name=AEtherflame Wall
url=http://magiccards.info/query?q=%21aetherflame%20wall
image=http://mtgimage.com/card/aetherflame%20wall.jpg
value=3.358
rarity=C
type=Creature
subtype=Wall
cost={1}{R}
pt=0/4
ability=defender;\
SN can block creatures with shadow as though they didn't have shadow.;\
{R}: SN gets +1/+0 until end of turn.
timing=smain

View File

@ -1,20 +0,0 @@
[
new MagicSpellCardEvent() {
@Override
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
return new MagicEvent(
cardOnStack,
this,
"Return all attacking creatures to their owners' hands."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
final Collection<MagicPermanent> targets=
game.filterPermanents(event.getPlayer(),MagicTargetFilterFactory.ATTACKING_CREATURE);
for (final MagicPermanent target : targets) {
game.doAction(new MagicRemoveFromPlayAction(target,MagicLocationType.OwnersHand));
}
}
}
]

View File

@ -1,9 +0,0 @@
name=AEtherize
url=http://magiccards.info/query?q=%21aetherize
image=http://mtgimage.com/card/aetherize.jpg
value=3.760
rarity=U
type=Instant
cost={3}{U}
timing=removal
requires_groovy_code

View File

@ -1,12 +0,0 @@
name=AEthersnipe
url=http://magiccards.info/query?q=%21aethersnipe
image=http://mtgimage.com/card/aethersnipe.jpg
value=3.575
rarity=C
type=Creature
subtype=Elemental
cost={5}{U}
pt=4/4
ability=When SN enters the battlefield, return target nonland permanent to its owner's hand.;\
evoke {1}{U}{U}
timing=main

View File

@ -9,3 +9,4 @@ ability=SN enters the battlefield tapped.;\
{T}: Add {W} to your mana pool.;\
{T}, Sacrifice SN: Add one mana of any color to your mana pool.
timing=tapland
oracle=Abandoned Outpost enters the battlefield tapped. {T}: Add {W} to your mana pool. {T}, Sacrifice Abandoned Outpost: Add one mana of any color to your mana pool.

View File

@ -9,3 +9,4 @@ cost={2}{W}{W}{W}
pt=3/4
ability=flying;protection from red
timing=main
oracle=Flying, protection from red

View File

@ -9,3 +9,4 @@ cost={3}{W}
pt=2/2
ability=flying;vigilance
timing=main
oracle=Flying, vigilance

View File

@ -9,3 +9,4 @@ cost={2}{W}
pt=1/3
ability={W},{T}:SN gets +0/+3 until end of turn.
timing=main
oracle={W}, {T}: Abbey Matron gets +0/+3 until end of turn.

View File

@ -11,3 +11,4 @@ ability=flying;\
At the beginning of your upkeep, sacrifice a creature.
timing=main
requires_groovy_code
oracle=Flying. When Abhorrent Overlord enters the battlefield, put a number of 1/1 black Harpy creature tokens with flying onto the battlefield equal to your devotion to black.. At the beginning of your upkeep, sacrifice a creature.

View File

@ -8,3 +8,4 @@ cost={U}
ability=As an additional cost to cast SN, sacrifice a blue permanent.
effect=Counter target spell.
timing=counter
oracle=As an additional cost to cast Abjure, sacrifice a blue permanent. Counter target spell.

View File

@ -8,3 +8,4 @@ cost={1}{W}{W}
ability=You may discard a Plains card rather than pay SN's mana cost.
effect=Destroy target artifact or enchantment.
timing=removal
oracle=You may discard a Plains card rather than pay Abolish's mana cost. Destroy target artifact or enchantment.

View File

@ -9,3 +9,4 @@ cost={3}{B}{B}
pt=2/6
timing=main
requires_groovy_code
oracle=Whenever Abomination blocks or becomes blocked by a green or white creature, destroy that creature at end of combat.

View File

@ -10,3 +10,4 @@ ability=Enchanted creature has flying.
enchant=flying,pos creature
timing=aura
requires_groovy_code
oracle=Enchant creature. Enchanted creature has flying. Threshold ? Enchanted creature has shroud as long as seven or more cards are in your graveyard.

View File

@ -7,3 +7,4 @@ type=Instant
cost={R}
effect=Switch target creature's power and toughness until end of turn.
timing=pump
oracle=Switch target creature's power and toughness until end of turn.

View File

@ -8,3 +8,4 @@ cost={B}{G}
ability=SN can't be countered by spells or abilities.
timing=removal
effect=Destroy target nonland permanent with converted mana cost 3 or less.
oracle=Abrupt Decay can't be countered by spells or abilities. Destroy target nonland permanent with converted mana cost 3 or less.

View File

@ -7,3 +7,4 @@ type=Enchantment
cost={1}{W}
ability=all creatures have protection from black
timing=enchantment
oracle=All creatures have protection from black.

View File

@ -7,3 +7,4 @@ type=Enchantment
cost={1}{W}
ability=all creatures have protection from red
timing=enchantment
oracle=All creatures have protection from red.

View File

@ -7,3 +7,4 @@ type=Instant
cost={W}{U}{U}
timing=counter
requires_groovy_code
oracle=Counter target spell. You gain 3 life.

View File

@ -8,3 +8,4 @@ cost={6}{B}
ability=Basic landcycling {1}{B}
effect=Target player loses 4 life and you gain 4 life.
timing=main
oracle=Target player loses 4 life and you gain 4 life. Basic landcycling {1}{B}

View File

@ -10,3 +10,4 @@ pt=1/1
timing=main
ability={T}: Prevent the next 1 damage that would be dealt to target creature or player this turn.;\
{T}: Prevent the next 2 damage that would be dealt to target artifact creature this turn.
oracle={T}: Prevent the next 1 damage that would be dealt to target creature or player this turn. {T}: Prevent the next 2 damage that would be dealt to target artifact creature this turn.

View File

@ -10,3 +10,4 @@ ability=When SN enters the battlefield, draw a card.;\
Enchanted land has "{T}: Add one mana of any color to your mana pool."
enchant=pump,pos land
timing=enchantment
oracle=Enchant land. When Abundant Growth enters the battlefield, draw a card. Enchanted land has "{T}: Add one mana of any color to your mana pool."

View File

@ -9,3 +9,4 @@ cost={1}{B}
pt=1/1
ability=When SN dies, each player sacrifices a creature.
timing=main
oracle=When Abyssal Gatekeeper dies, each player sacrifices a creature.

View File

@ -10,3 +10,4 @@ pt=2/2
ability=flying;\
When SN enters the battlefield, target player discards two cards.
timing=main
oracle=Flying. When Abyssal Horror enters the battlefield, target player discards two cards.

View File

@ -9,3 +9,4 @@ cost={3}{B}
pt=2/2
timing=main
requires_groovy_code
oracle=Whenever Abyssal Nightstalker attacks and isn't blocked, defending player discards a card.

View File

@ -9,3 +9,4 @@ cost={1}{B}{B}
pt=2/2
timing=main
requires_groovy_code
oracle=Whenever an opponent discards a card, Abyssal Nocturnus gets +2/+2 and gains fear until end of turn.

View File

@ -10,3 +10,4 @@ pt=2/3
ability=flying;\
Whenever SN deals damage to a player, that player discards a card.
timing=main
oracle=Flying. Whenever Abyssal Specter deals damage to a player, that player discards a card.

View File

@ -7,3 +7,4 @@ type=Legendary,Land
ability={T}: Add {1} to your mana pool.;\
{1}{U}, {T}: Put target artifact card from your graveyard on top of your library.
timing=land
oracle={T}: Add {1} to your mana pool. {1}{U}, {T}: Put target artifact card from your graveyard on top of your library.

View File

@ -7,3 +7,4 @@ type=Instant
cost={1}{R}
timing=pump
requires_groovy_code
oracle=Target creature gains haste until end of turn. Draw a card.

View File

@ -9,3 +9,4 @@ cost={1}{W}
pt=3/1
ability=battle cry
timing=main
oracle=Battle cry

View File

@ -9,3 +9,4 @@ cost={0}
ability=Equipped creature gets +0/+3 and has vigilance.;\
Equip {3}
timing=equipment
oracle=Equipped creature gets +0/+3 and has vigilance.. Equip {3}

View File

@ -9,3 +9,4 @@ cost={B}
pt=2/2
ability=When SN enters the battlefield, sacrifice a creature.
timing=main
oracle=When Accursed Centaur enters the battlefield, sacrifice a creature.

View File

@ -9,3 +9,4 @@ cost={3}{B}
pt=3/2
ability=intimidate
timing=main
oracle=Intimidate

View File

@ -8,3 +8,4 @@ type=Sorcery
cost={3}{U}
effect=Destroy all Forests.
timing=removal
oracle=Destroy all Forests.

View File

@ -9,3 +9,4 @@ cost={3}{G}{G}
pt=3/5
ability=reach;When SN enters the battlefield, you may destroy target Equipment.
timing=main
oracle=Reach. When Acid Web Spider enters the battlefield, you may destroy target Equipment.

View File

@ -11,3 +11,4 @@ pt=2/2
ability=deathtouch;\
When SN enters the battlefield, destroy target artifact, enchantment, or land.
timing=fmain
oracle=Deathtouch. When Acidic Slime enters the battlefield, destroy target artifact, enchantment, or land.

View File

@ -10,3 +10,4 @@ pt=2/2
ability=all slivers have "{2},Sacrifice SN: SN deals 2 damage to target creature or player."
static=all
timing=main
oracle=All Slivers have "{2}, Sacrifice this permanent: This permanent deals 2 damage to target creature or player."

View File

@ -9,3 +9,4 @@ cost={B}
pt=0/1
ability={1}{B},{T}: Target player loses 1 life.
timing=main
oracle={1}{B}, {T}: Target player loses 1 life.

View File

@ -7,3 +7,4 @@ type=Artifact
cost={4}
timing=artifact
requires_groovy_code
oracle={1}, {T}: Acorn Catapult deals 1 damage to target creature or player. That creature's controller or that player puts a 1/1 green Squirrel creature token onto the battlefield.

View File

@ -8,3 +8,4 @@ cost={3}{G}
effect=Put two 1/1 green Squirrel creature tokens onto the battlefield.
ability=Flashback {1}{G}, Pay 3 life.
timing=main
oracle=Put two 1/1 green Squirrel creature tokens onto the battlefield. Flashback?{1}{G}, Pay 3 life.

View File

@ -9,3 +9,4 @@ cost={1}{G}
pt=2/4
ability=echo {1}{G}
timing=main
oracle=Echo {1}{G}

View File

@ -10,3 +10,4 @@ ability=alt cost {3}{P/R}, Pay 2 life named Pay 2 life;\
alt cost {3}, Pay 4 life named Pay 4 life
timing=main
requires_groovy_code
oracle=Gain control of target creature an opponent controls until end of turn. Untap that creature. It gains haste until end of turn.

View File

@ -8,3 +8,4 @@ type=Sorcery
cost={2}{R}
timing=main
requires_groovy_code
oracle=Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn.

View File

@ -9,3 +9,4 @@ cost={4}{G}
pt=6/2
ability=evolve
timing=main
oracle=Evolve

View File

@ -9,3 +9,4 @@ cost={5}
pt=3/3
ability={1}:SN gets +0/+1 until end of turn.
timing=artifact
oracle={1}: Adarkar Sentinel gets +0/+1 until end of turn.

View File

@ -8,3 +8,4 @@ mana=w2u2
ability={T}: Add {1} to your mana pool.;\
{T}: Add {W} or {U} to your mana pool. SN deals 1 damage to you.
timing=land
oracle={T}: Add {1} to your mana pool. {T}: Add {W} or {U} to your mana pool. Adarkar Wastes deals 1 damage to you.

View File

@ -9,3 +9,4 @@ cost={1}{R}
pt=2/1
timing=main
requires_groovy_code
oracle=When Adder-Staff Boggart enters the battlefield, clash with an opponent. If you win, put a +1/+1 counter on Adder-Staff Boggart.

View File

@ -10,3 +10,4 @@ pt=6/6
ability=flying;When SN leaves the battlefield, return all cards exiled with it to the battlefield under their owners' control.
timing=main
requires_groovy_code
oracle=Flying. Landfall ? Whenever a land enters the battlefield under your control, you may exile target nonland permanent other than Admonition Angel. When Admonition Angel leaves the battlefield, return all cards exiled with it to the battlefield under their owners' control.

View File

@ -9,3 +9,4 @@ cost={B}{R}{G}
pt=1/2
ability={B}{R}{G},{T}:Return target creature card from your graveyard to your hand.
timing=main
oracle={B}{R}{G}, {T}: Return target creature card from your graveyard to your hand.

View File

@ -9,3 +9,4 @@ cost={1}{W}
pt=1/1
ability=first strike;{W}:Target creature gains first strike until end of turn.
timing=main
oracle=First strike. {W}: Target creature gains first strike until end of turn.

View File

@ -9,3 +9,4 @@ cost={3}{U}
pt=2/2
ability=flying;{U}: SN gains shroud until end of turn.
timing=main
oracle=Flying. {U}: Advanced Hoverguard gains shroud until end of turn.

View File

@ -7,3 +7,4 @@ type=Instant
cost={1}{G}{G}{W}
effect=Put a 5/5 green Wurm creature token with trample onto the battlefield.
timing=token
oracle=Put a 5/5 green Wurm creature token with trample onto the battlefield.

View File

@ -9,3 +9,4 @@ cost={1}
ability=Equip {1}
timing=equipment
requires_groovy_code
oracle=Landfall ? Whenever a land enters the battlefield under your control, equipped creature gets +2/+2 until end of turn. Equip {1}

View File

@ -9,3 +9,4 @@ cost={2}{G}
pt=2/3
ability=At the beginning of your end step, put a +1/+1 counter on target Beast creature you control.
timing=main
oracle=At the beginning of your end step, put a +1/+1 counter on target Beast creature you control.

View File

@ -7,3 +7,4 @@ type=Artifact
cost={3}
ability={1},{T}:Target 1/1 creature gets +1/+2 until end of turn.
timing=artifact
oracle={1}, {T}: Target 1/1 creature gets +1/+2 until end of turn.

View File

@ -7,3 +7,4 @@ type=Artifact
cost={2}
ability={2},{T},Sacrifice SN:SN deals 2 damage to target creature or player.
timing=artifact
oracle={1}, {T}, Sacrifice Aeolipile: Aeolipile deals 2 damage to target creature or player.

View File

@ -7,3 +7,4 @@ type=Instant
cost={1}{W}
effect=Target creature gets +1/+1 and gains flying and first strike until end of turn.
timing=pump
oracle=Target creature gets +1/+1 and gains flying and first strike until end of turn.

View File

@ -7,3 +7,4 @@ type=Instant
cost={2}{G}
timing=removal
requires_groovy_code
oracle=Destroy target creature with flying. You gain 2 life.

View File

@ -10,3 +10,4 @@ pt=3/3
ability=flying;\
{1}{G}{U}: Creatures you control gain shroud until end of turn.
timing=main
oracle=Flying. {1}{G}{U}: Creatures you control gain shroud until end of turn.

View File

@ -9,3 +9,4 @@ cost={3}{U}
pt=2/4
ability=Whenever SN becomes untapped, you may pay {2}{U}. If you do, put a 2/2 blue Bird enchantment creature token with flying onto the battlefield.
timing=main
oracle=Inspired ? Whenever Aerie Worshippers becomes untapped, you may pay {2}{U}. If you do, put a 2/2 blue Bird enchantment creature token with flying onto the battlefield.

View File

@ -9,3 +9,4 @@ cost={3}
ability=flying;SN can't block.
pt=2/1
timing=main
oracle=Flying. Aesthir Glider can't block.

View File

@ -10,3 +10,4 @@ pt=2/2
ability=flash;\
When SN enters the battlefield, target creature gets +0/+3 until end of turn.
timing=pumpflash
oracle=Flash. When Affa Guard Hound enters the battlefield, target creature gets +0/+3 until end of turn.

View File

@ -8,3 +8,4 @@ type=Instant
cost={2}{B}
timing=removal
requires_groovy_code
oracle=Target creature gets -1/-1 until end of turn. Draw a card.

View File

@ -8,3 +8,4 @@ type=Instant
cost={2}{W}
timing=removal
requires_groovy_code
oracle=Destroy target creature. It can't be regenerated. Its controller puts a 1/1 white Spirit creature token with flying onto the battlefield.

View File

@ -7,3 +7,4 @@ type=Sorcery
cost={2}{R}{R}
timing=main
requires_groovy_code
oracle=Destroy target artifact, creature, or land. Aftershock deals 3 damage to you.

View File

@ -9,3 +9,4 @@ cost={3}{G}{G}
pt=4/4
timing=fmain
requires_groovy_code
oracle=Whenever you gain life, put that many +1/+1 counters on Ageless Entity.

View File

@ -10,3 +10,4 @@ pt=4/4
ability=defender;flying
timing=main
requires_groovy_code
oracle=Defender. Flying. When Ageless Sentinels blocks, it becomes a Bird Giant, and it loses defender.

View File

@ -9,3 +9,4 @@ cost={2}{G}
pt=3/2
ability={2}{U}: SN can't be blocked this turn.
timing=main
oracle={2}{U}: Agent of Horizons can't be blocked this turn.

View File

@ -9,3 +9,4 @@ cost={1}{B}
pt=1/1
ability={1}{B},Sacrifice a land:Target creature gets +2/+0 until end of turn.
timing=main
oracle={1}{B}, Sacrifice a land: Target creature gets +2/+0 until end of turn.

View File

@ -9,3 +9,4 @@ cost={1}{B}{B}
pt=3/2
ability=Whenever you cast a spell that targets SN, each opponent sacrifices a creature.
timing=main
oracle=Deathtouch. Heroic ? Whenever you cast a spell that targets Agent of the Fates, each opponent sacrifices a creature.

View File

@ -8,3 +8,4 @@ type=Instant
cost={3}{R}{R}
timing=removal
requires_groovy_code
oracle=Aggravate deals 1 damage to each creature target player controls. Each creature dealt damage this way attacks this turn if able.

View File

@ -7,3 +7,4 @@ type=Instant
cost={1}{G}
timing=pump
requires_groovy_code
oracle=Target creature gets +1/+1 until end of turn. Draw a card.

View File

@ -9,3 +9,4 @@ cost={1}{R}
ability=Enchanted creature gets +1/+1 and has flanking.
timing=aura
enchant=pump,pos creature
oracle=Enchant creature. Enchanted creature gets +1/+1 and has flanking.

View File

@ -7,3 +7,4 @@ type=Sorcery
cost={2}{B}{B}
timing=removal
requires_groovy_code
oracle=Look at target player's hand and choose two cards from it. Put them on top of that player's library in any order.

View File

@ -10,3 +10,4 @@ ability=Enchanted creature gets -5/-0.;\
{2}{U}:Return SN to its owner's hand.
timing=aura
enchant=weaken -5/-0,neg creature
oracle=Enchant creature. Enchanted creature gets -5/-0. {2}{U}: Return Agoraphobia to its owner's hand.

View File

@ -11,3 +11,4 @@ ability=Enchanted creature has flying.;\
Enchanted creature can block only creatures with flying.
timing=aura
enchant=flying,creature
oracle=Enchant creature. Enchanted creature has flying. Enchanted creature can block only creatures with flying.

View File

@ -9,3 +9,4 @@ subtype=Elemental
cost={3}{U}{U}
pt=4/4
timing=main
oracle=Flying

View File

@ -10,3 +10,4 @@ pt=4/3
ability=flying;\
{2}{U}: Tap target creature with flying.
timing=main
oracle=Flying. {2}{U}: Tap target creature with flying.

View File

@ -7,3 +7,4 @@ type=Sorcery
cost={3}{U}
timing=main
requires_groovy_code
oracle=Draw a card for each Bird on the battlefield.

View File

@ -10,3 +10,4 @@ pt=2/2
ability=flying
timing=main
requires_groovy_code
oracle=Flying. {1}{R}, Sacrifice a Goblin creature: Airdrop Condor deals damage equal to the sacrificed creature's power to target creature or player.

View File

@ -9,3 +9,4 @@ cost={2}{W}{W}
ability=loyalty 4
timing=main
requires_groovy_code
oracle=+1: You gain 2 life. -1: Put a +1/+1 counter on each creature you control. Those creatures gain vigilance until end of turn. -6: Put a white Avatar creature token onto the battlefield. It has "This creature's power and toughness are each equal to your life total."

Some files were not shown because too many files have changed in this diff Show More