mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Implemented Breath of Fire
This commit is contained in:
parent
ba452a83db
commit
7a95849bb3
2 changed files with 33 additions and 0 deletions
32
Mage.Sets/src/mage/cards/b/BreathOfFire.java
Normal file
32
Mage.Sets/src/mage/cards/b/BreathOfFire.java
Normal file
|
@ -0,0 +1,32 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BreathOfFire extends CardImpl {
|
||||
|
||||
public BreathOfFire(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{R}");
|
||||
|
||||
// Breath of Fire deals 2 damage to target creature.
|
||||
this.getSpellAbility().addEffect(new DamageTargetEffect(2));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
public BreathOfFire(final BreathOfFire card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BreathOfFire copy() {
|
||||
return new BreathOfFire(this);
|
||||
}
|
||||
}
|
|
@ -21,6 +21,7 @@ public final class JiangYangguMuYanling extends ExpansionSet {
|
|||
this.blockName = "Global Series";
|
||||
this.hasBasicLands = true;
|
||||
cards.add(new SetCardInfo("Armored Whirl Turtle", 7, Rarity.COMMON, mage.cards.a.ArmoredWhirlTurtle.class));
|
||||
cards.add(new SetCardInfo("Breath of Fire", 33, Rarity.COMMON, mage.cards.b.BreathOfFire.class));
|
||||
cards.add(new SetCardInfo("Brilliant Plan", 17, Rarity.UNCOMMON, mage.cards.b.BrilliantPlan.class));
|
||||
cards.add(new SetCardInfo("Cloak of Mists", 13, Rarity.COMMON, mage.cards.c.CloakOfMists.class));
|
||||
cards.add(new SetCardInfo("Forest", 40, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
Loading…
Reference in a new issue