Add Jump-start to MagicAbility.java

master
Ada Joule 2018-11-24 14:30:55 +07:00 committed by Melvin Zhang
parent 6e03b1ceb3
commit 13ae81e0e2
1 changed files with 7 additions and 0 deletions

View File

@ -655,6 +655,13 @@ public enum MagicAbility {
card.add(ThisAttacksTrigger.Mentor);
}
},
JumpStart("jump-start", 0) {
@Override
protected void addAbilityImpl(final MagicAbilityStore card, final Matcher arg) {
final MagicCardDefinition cardDef = (MagicCardDefinition)card;
card.add(new MagicJumpStartActivation(cardDef));
}
},
// abilities that involve SN
ShockLand("As SN enters the battlefield, you may " + ARG.COST + "\\. If you don't, SN enters the battlefield tapped\\.", -10) {