mirror of
https://github.com/correl/mage.git
synced 2024-12-25 19:25:41 +00:00
typo fix
This commit is contained in:
parent
8da963b771
commit
a4f0789fac
1 changed files with 2 additions and 2 deletions
|
@ -56,9 +56,9 @@ public class DeathCultist extends CardImpl<DeathCultist> {
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
|
|
||||||
SimpleActivatedAbility ability = new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD,
|
SimpleActivatedAbility ability = new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD,
|
||||||
new LoseLifeTargetEffect(3),
|
new LoseLifeTargetEffect(1),
|
||||||
new SacrificeSourceCost());
|
new SacrificeSourceCost());
|
||||||
ability.addEffect(new GainLifeEffect(3));
|
ability.addEffect(new GainLifeEffect(1));
|
||||||
ability.addTarget(new TargetPlayer());
|
ability.addTarget(new TargetPlayer());
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue