fixed the amount of tokens made by Elspeth, Sun's Nemesis

This commit is contained in:
Evan Kranzler 2019-12-11 20:50:23 -05:00
parent 3965061234
commit a2c142df41

View file

@ -36,7 +36,7 @@ public final class ElspethSunsNemesis extends CardImpl {
this.addAbility(ability); this.addAbility(ability);
// 2: Create two 1/1 white Human Soldier creature tokens. // 2: Create two 1/1 white Human Soldier creature tokens.
this.addAbility(new LoyaltyAbility(new CreateTokenEffect(new HumanSoldierToken()), -2)); this.addAbility(new LoyaltyAbility(new CreateTokenEffect(new HumanSoldierToken(), 2), -2));
// 3: You gain 5 life. // 3: You gain 5 life.
this.addAbility(new LoyaltyAbility(new GainLifeEffect(5), -3)); this.addAbility(new LoyaltyAbility(new GainLifeEffect(5), -3));