mirror of
https://github.com/correl/mage.git
synced 2024-12-28 11:14:13 +00:00
Little fixes
This commit is contained in:
parent
478aa265b8
commit
fd7423c8ce
2 changed files with 4 additions and 3 deletions
|
@ -22,11 +22,12 @@ public class AcademyDrake extends CardImpl {
|
||||||
power = new MageInt(2);
|
power = new MageInt(2);
|
||||||
toughness = new MageInt(2);
|
toughness = new MageInt(2);
|
||||||
|
|
||||||
|
|
||||||
// Kicker {4}
|
// Kicker {4}
|
||||||
this.addAbility(new KickerAbility("{4}"));
|
this.addAbility(new KickerAbility("{4}"));
|
||||||
|
|
||||||
// Flying
|
// Flying
|
||||||
addAbility(FlyingAbility.getInstance());
|
addAbility(FlyingAbility.getInstance());
|
||||||
|
|
||||||
// If Academy Drake was kicked, it enters the battlefield with two +1/+1 counters on it.
|
// 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)),
|
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.", ""));
|
KickedCondition.instance, "If {this} was kicked, it enters the battlefield with two +1/+1 counters on it.", ""));
|
||||||
|
|
|
@ -24,15 +24,15 @@ public class SerraDisciple extends CardImpl {
|
||||||
power = new MageInt(1);
|
power = new MageInt(1);
|
||||||
toughness = new MageInt(1);
|
toughness = new MageInt(1);
|
||||||
|
|
||||||
|
// Flying, first strike
|
||||||
addAbility(FlyingAbility.getInstance());
|
addAbility(FlyingAbility.getInstance());
|
||||||
|
|
||||||
addAbility(FirstStrikeAbility.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,
|
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");
|
"Whenever you cast a historic spell, {this} gets +1/+1 until end of turn");
|
||||||
|
|
||||||
addAbility(ability);
|
addAbility(ability);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public SerraDisciple(final SerraDisciple serraDisciple){
|
public SerraDisciple(final SerraDisciple serraDisciple){
|
||||||
|
|
Loading…
Reference in a new issue