implement [MH3] Thief of Existence

This commit is contained in:
Susucre 2024-06-06 20:28:00 +02:00
parent 9e1b5acef8
commit 24e73df510
4 changed files with 187 additions and 1 deletions

View file

@ -7,11 +7,14 @@ import mage.game.events.GameEvent;
import mage.game.events.ZoneChangeEvent;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public class LeavesBattlefieldTriggeredAbility extends ZoneChangeTriggeredAbility {
public LeavesBattlefieldTriggeredAbility(Effect effect) {
this(effect, false);
}
public LeavesBattlefieldTriggeredAbility(Effect effect, boolean optional) {
super(Zone.ALL, Zone.BATTLEFIELD, null, effect, "When {this} leaves the battlefield, ", optional);
}