mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
fix text
This commit is contained in:
parent
69a8dbb0e9
commit
2fd61eb0ae
2 changed files with 2 additions and 2 deletions
|
|
@ -38,7 +38,7 @@ public final class PhlageTitanOfFiresFury extends CardImpl {
|
|||
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.
|
||||
Ability ability = new EntersBattlefieldOrAttacksSourceTriggeredAbility(new DamageTargetEffect(3));
|
||||
Ability ability = new EntersBattlefieldOrAttacksSourceTriggeredAbility(new DamageTargetEffect(3, "it"));
|
||||
ability.addEffect(new GainLifeEffect(3).concatBy("and"));
|
||||
ability.addTarget(new TargetAnyTarget());
|
||||
this.addAbility(ability);
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ public final class SkoaEmbermage extends CardImpl {
|
|||
this.power = 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.addTarget(new TargetAnyTarget());
|
||||
this.addAbility(ability);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue