forked from External/mage
51 lines
1.4 KiB
Java
51 lines
1.4 KiB
Java
package mage.abilities.abilityword;
|
|
|
|
import mage.abilities.TriggeredAbilityImpl;
|
|
import mage.abilities.effects.Effect;
|
|
import mage.constants.AbilityWord;
|
|
import mage.constants.Zone;
|
|
import mage.game.Game;
|
|
import mage.game.events.GameEvent;
|
|
import mage.game.permanent.Permanent;
|
|
|
|
/**
|
|
* TODO: This only triggers off of enchantments entering as the room mechanic hasn't been implemented yet
|
|
*
|
|
* @author TheElk801
|
|
*/
|
|
|
|
public class EerieAbility extends TriggeredAbilityImpl {
|
|
|
|
public EerieAbility(Effect effect) {
|
|
this(effect, false);
|
|
}
|
|
|
|
public EerieAbility(Effect effect, boolean optional) {
|
|
super(Zone.BATTLEFIELD, effect, optional);
|
|
setAbilityWord(AbilityWord.EERIE);
|
|
setTriggerPhrase("Whenever an enchantment you control enters and whenever you fully unlock a Room, ");
|
|
}
|
|
|
|
protected EerieAbility(final EerieAbility ability) {
|
|
super(ability);
|
|
}
|
|
|
|
@Override
|
|
public EerieAbility copy() {
|
|
return new EerieAbility(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean checkEventType(GameEvent event, Game game) {
|
|
return event.getType() == GameEvent.EventType.ENTERS_THE_BATTLEFIELD;
|
|
}
|
|
|
|
@Override
|
|
public boolean checkTrigger(GameEvent event, Game game) {
|
|
if (!isControlledBy(event.getPlayerId())) {
|
|
return false;
|
|
}
|
|
Permanent permanent = game.getPermanent(event.getTargetId());
|
|
return permanent != null && permanent.isEnchantment(game);
|
|
}
|
|
}
|