forked from External/mage
59 lines
2 KiB
Java
59 lines
2 KiB
Java
package mage.abilities.common;
|
|
|
|
import mage.abilities.TriggeredAbilityImpl;
|
|
import mage.abilities.effects.Effect;
|
|
import mage.constants.Zone;
|
|
import mage.game.Game;
|
|
import mage.game.events.GameEvent;
|
|
|
|
/**
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
public class EntersBattlefieldTriggeredAbility extends TriggeredAbilityImpl {
|
|
|
|
protected boolean ignoreRulesGeneration; // use it with custom rules (if you don't want ETB auto-generated text)
|
|
protected String etbFlavorWord = null;
|
|
|
|
public EntersBattlefieldTriggeredAbility(Effect effect) {
|
|
this(effect, false);
|
|
}
|
|
|
|
public EntersBattlefieldTriggeredAbility(Effect effect, boolean optional) {
|
|
this(effect, optional, false);
|
|
}
|
|
|
|
public EntersBattlefieldTriggeredAbility(Effect effect, boolean optional, boolean ignoreRulesGeneration) {
|
|
super(Zone.ALL, effect, optional); // Zone.All because a creature with trigger can be put into play and be sacrificed during the resolution of an effect (discard Obstinate Baloth with Smallpox)
|
|
this.ignoreRulesGeneration = ignoreRulesGeneration;
|
|
}
|
|
|
|
public EntersBattlefieldTriggeredAbility(final EntersBattlefieldTriggeredAbility ability) {
|
|
super(ability);
|
|
this.ignoreRulesGeneration = ability.ignoreRulesGeneration;
|
|
this.etbFlavorWord = ability.etbFlavorWord;
|
|
}
|
|
|
|
@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 (event.getTargetId().equals(getSourceId())) {
|
|
this.getEffects().setValue("permanentEnteredBattlefield", game.getPermanent(event.getTargetId()));
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public String getTriggerPhrase() {
|
|
return "When {this} enters the battlefield, ";
|
|
}
|
|
|
|
@Override
|
|
public EntersBattlefieldTriggeredAbility copy() {
|
|
return new EntersBattlefieldTriggeredAbility(this);
|
|
}
|
|
}
|