[DSK] Implement Fear of Infinity

This commit is contained in:
theelk801 2024-09-05 10:35:31 -04:00
parent efe440618d
commit f56dbadf18
3 changed files with 56 additions and 1 deletions

View file

@ -21,7 +21,11 @@ public class EerieAbility extends TriggeredAbilityImpl {
}
public EerieAbility(Effect effect, boolean optional) {
super(Zone.BATTLEFIELD, effect, optional);
this(Zone.BATTLEFIELD, effect, optional);
}
public EerieAbility(Zone zone, Effect effect, boolean optional) {
super(zone, effect, optional);
setAbilityWord(AbilityWord.EERIE);
setTriggerPhrase("Whenever an enchantment you control enters and whenever you fully unlock a Room, ");
}