[CLB] Implement Nalfeshnee (#9928)

This commit is contained in:
Grath 2023-02-08 14:45:10 -05:00 committed by GitHub
parent 16efa135d8
commit 19c06e560a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 121 additions and 0 deletions

View file

@ -660,6 +660,11 @@ public class Spell extends StackObjectImpl implements Card {
throw new UnsupportedOperationException("Not supported.");
}
// To add abilities to permanent spell copies in a StackObjectCopyApplier which will persist into the resulting token.
public void addAbilityForCopy(Ability ability) {
card.addAbility(ability);
}
@Override
public SpellAbility getSpellAbility() {
return ability;