Add Riot ability to script

master
Ada Joule 2019-01-16 03:14:25 +07:00
parent 0efcab7f0d
commit 4690cbe4b8
1 changed files with 6 additions and 0 deletions

View File

@ -662,6 +662,12 @@ public enum MagicAbility {
card.add(new MagicJumpStartActivation(cardDef));
}
},
Riot("riot", 10) {
@Override
protected void addAbilityImpl(final MagicAbilityStore card, final Matcher arg) {
card.add(EntersBattlefieldTrigger.Riot);
}
},
// abilities that involve SN
ShockLand("As SN enters the battlefield, you may " + ARG.COST + "\\. If you don't, SN enters the battlefield tapped\\.", -10) {