[OTC] Implement Smirking Spelljacker

This commit is contained in:
Susucre 2024-04-06 16:26:16 +02:00
parent 788fbd26e1
commit a86b629abe
4 changed files with 188 additions and 0 deletions

View file

@ -34,6 +34,13 @@ public class MayCastTargetCardEffect extends OneShotEffect {
this(CastManaAdjustment.NONE, thenExile);
}
/**
* Allows to cast the target card immediately, either for its cost or with a modifier (like for free, or mana as any type).
*/
public MayCastTargetCardEffect(CastManaAdjustment manaAdjustment) {
this(manaAdjustment, false);
}
/**
* Allows to cast the target card immediately, either for its cost or with a modifier (like for free, or mana as any type).
*/