Little fixes

This commit is contained in:
Oleg Agafonov 2018-04-04 08:05:19 +04:00
parent 478aa265b8
commit fd7423c8ce
2 changed files with 4 additions and 3 deletions

View file

@ -22,11 +22,12 @@ public class AcademyDrake extends CardImpl {
power = new MageInt(2);
toughness = new MageInt(2);
// Kicker {4}
this.addAbility(new KickerAbility("{4}"));
// Flying
addAbility(FlyingAbility.getInstance());
// If Academy Drake was kicked, it enters the battlefield with two +1/+1 counters on it.
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(2)),
KickedCondition.instance, "If {this} was kicked, it enters the battlefield with two +1/+1 counters on it.", ""));

View file

@ -24,15 +24,15 @@ public class SerraDisciple extends CardImpl {
power = new MageInt(1);
toughness = new MageInt(1);
// Flying, first strike
addAbility(FlyingAbility.getInstance());
addAbility(FirstStrikeAbility.getInstance());
// Whenever you cast a historic spell, Serra Disciple gets +1/+1 until end of turn
Ability ability = new SpellCastControllerTriggeredAbility(new BoostSourceEffect(1, 1, Duration.EndOfTurn), new FilterHistoricSpell(), false,
"Whenever you cast a historic spell, {this} gets +1/+1 until end of turn");
addAbility(ability);
}
public SerraDisciple(final SerraDisciple serraDisciple){