forked from External/mage
39 lines
1.4 KiB
Java
39 lines
1.4 KiB
Java
package mage.abilities.common;
|
|
|
|
import mage.abilities.TriggeredAbilityImpl;
|
|
import mage.abilities.effects.Effect;
|
|
import mage.abilities.effects.common.CreateDelayedTriggeredAbilityEffect;
|
|
import mage.constants.Zone;
|
|
import mage.game.Game;
|
|
import mage.game.events.GameEvent;
|
|
|
|
public class AttacksOrBlocksTriggeredAbility extends TriggeredAbilityImpl {
|
|
|
|
public AttacksOrBlocksTriggeredAbility(Effect effect, boolean optional) {
|
|
super(Zone.BATTLEFIELD, effect, optional);
|
|
if (effect instanceof CreateDelayedTriggeredAbilityEffect) {
|
|
setTriggerPhrase("When {this} attacks or blocks, ");
|
|
} else {
|
|
setTriggerPhrase("Whenever {this} attacks or blocks, ");
|
|
}
|
|
}
|
|
|
|
public AttacksOrBlocksTriggeredAbility(final AttacksOrBlocksTriggeredAbility ability) {
|
|
super(ability);
|
|
}
|
|
|
|
@Override
|
|
public AttacksOrBlocksTriggeredAbility copy() {
|
|
return new AttacksOrBlocksTriggeredAbility(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean checkEventType(GameEvent event, Game game) {
|
|
return event.getType() == GameEvent.EventType.ATTACKER_DECLARED || event.getType() == GameEvent.EventType.CREATURE_BLOCKS;
|
|
}
|
|
|
|
@Override
|
|
public boolean checkTrigger(GameEvent event, Game game) {
|
|
return getSourceId().equals((event.getType() == GameEvent.EventType.ATTACKER_DECLARED) ? event.getSourceId() : event.getTargetId());
|
|
}
|
|
}
|