mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[KTK] Minor fixes.
This commit is contained in:
parent
70a4203227
commit
308250a6ea
2 changed files with 8 additions and 7 deletions
|
@ -57,7 +57,8 @@ public class MarduHeartPiercer extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// <em>Raid</em> - When Mardu Heart-Piercer enters the battlefield, if you attacked with a creature this turn, Mardu Heart-Piercer deals 2 damage to target creature or player.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new ConditionalOneShotEffect(new DamageTargetEffect(2), RaidCondition.getInstance(), "if you attacked with a creature this turn, {this} deals 2 damage to target creature or player"));
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new ConditionalOneShotEffect(new DamageTargetEffect(2), RaidCondition.getInstance(),
|
||||
"if you attacked with a creature this turn, {this} deals 2 damage to target creature or player"), false, "<i>Raid</i> - ");
|
||||
ability.addTarget(new TargetCreatureOrPlayer());
|
||||
this.addAbility(ability);
|
||||
this.addWatcher(new PlayerAttackedWatcher());
|
||||
|
|
|
@ -47,10 +47,10 @@ import mage.target.common.TargetControlledCreaturePermanent;
|
|||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
public class MisfireWeaver extends CardImpl {
|
||||
public class MistfireWeaver extends CardImpl {
|
||||
|
||||
public MisfireWeaver(UUID ownerId) {
|
||||
super(ownerId, 46, "Misfire Weaver", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
||||
public MistfireWeaver(UUID ownerId) {
|
||||
super(ownerId, 46, "Mistfire Weaver", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
||||
this.expansionSetCode = "KTK";
|
||||
this.subtype.add("Djinn");
|
||||
this.subtype.add("Wizard");
|
||||
|
@ -71,12 +71,12 @@ public class MisfireWeaver extends CardImpl {
|
|||
|
||||
}
|
||||
|
||||
public MisfireWeaver(final MisfireWeaver card) {
|
||||
public MistfireWeaver(final MistfireWeaver card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MisfireWeaver copy() {
|
||||
return new MisfireWeaver(this);
|
||||
public MistfireWeaver copy() {
|
||||
return new MistfireWeaver(this);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue