This commit is contained in:
Susucre 2024-05-30 13:50:20 +02:00
parent 69a8dbb0e9
commit 2fd61eb0ae
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ public final class PhlageTitanOfFiresFury extends CardImpl {
this.addAbility(new EntersBattlefieldTriggeredAbility(new PhlageTitanOfFiresFuryEffect())); this.addAbility(new EntersBattlefieldTriggeredAbility(new PhlageTitanOfFiresFuryEffect()));
// Whenever Phlage enters the battlefield or attacks, it deals 3 damage to any target and you gain 3 life. // Whenever Phlage enters the battlefield or attacks, it deals 3 damage to any target and you gain 3 life.
Ability ability = new EntersBattlefieldOrAttacksSourceTriggeredAbility(new DamageTargetEffect(3)); Ability ability = new EntersBattlefieldOrAttacksSourceTriggeredAbility(new DamageTargetEffect(3, "it"));
ability.addEffect(new GainLifeEffect(3).concatBy("and")); ability.addEffect(new GainLifeEffect(3).concatBy("and"));
ability.addTarget(new TargetAnyTarget()); ability.addTarget(new TargetAnyTarget());
this.addAbility(ability); this.addAbility(ability);

View file

@ -32,7 +32,7 @@ public final class SkoaEmbermage extends CardImpl {
this.power = new MageInt(4); this.power = new MageInt(4);
this.toughness = new MageInt(4); this.toughness = new MageInt(4);
// When Skoa, Embermage enters the battlefield, deals 4 damage to any target. // When Skoa, Embermage enters the battlefield, it deals 4 damage to any target.
Ability ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(4, "it")); Ability ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(4, "it"));
ability.addTarget(new TargetAnyTarget()); ability.addTarget(new TargetAnyTarget());
this.addAbility(ability); this.addAbility(ability);