forked from External/mage
* apply regex to change public copy constructors to protected * cleanup code using now protected constructors * fix manaBuilder weird casting of Mana into ConditionalMana
60 lines
1.9 KiB
Java
60 lines
1.9 KiB
Java
package mage.abilities.common;
|
|
|
|
import mage.abilities.TriggeredAbilityImpl;
|
|
import mage.abilities.effects.Effect;
|
|
import mage.constants.Zone;
|
|
import mage.filter.StaticFilters;
|
|
import mage.filter.common.FilterCreaturePermanent;
|
|
import mage.game.Game;
|
|
import mage.game.events.GameEvent;
|
|
import mage.target.targetpointer.FixedTarget;
|
|
import mage.util.CardUtil;
|
|
|
|
/**
|
|
* @author Hiddevb
|
|
*/
|
|
public class BlocksCreatureTriggeredAbility extends TriggeredAbilityImpl {
|
|
|
|
private final FilterCreaturePermanent filter;
|
|
|
|
public BlocksCreatureTriggeredAbility(Effect effect) {
|
|
this(effect, false);
|
|
}
|
|
|
|
public BlocksCreatureTriggeredAbility(Effect effect, boolean optional) {
|
|
this(effect, StaticFilters.FILTER_PERMANENT_CREATURE, optional);
|
|
}
|
|
|
|
public BlocksCreatureTriggeredAbility(Effect effect, FilterCreaturePermanent filter, boolean optional) {
|
|
super(Zone.BATTLEFIELD, effect, optional);
|
|
this.filter = filter;
|
|
setTriggerPhrase("Whenever {this} blocks " + CardUtil.addArticle(filter.getMessage()) + ", ");
|
|
}
|
|
|
|
protected BlocksCreatureTriggeredAbility(final BlocksCreatureTriggeredAbility ability) {
|
|
super(ability);
|
|
this.filter = ability.filter;
|
|
}
|
|
|
|
@Override
|
|
public boolean checkEventType(GameEvent event, Game game) {
|
|
return event.getType() == GameEvent.EventType.BLOCKER_DECLARED;
|
|
}
|
|
|
|
@Override
|
|
public boolean checkTrigger(GameEvent event, Game game) {
|
|
if (!event.getSourceId().equals(this.getSourceId())) {
|
|
return false;
|
|
}
|
|
if (!filter.match(game.getPermanent(event.getTargetId()), getControllerId(), this, game)) {
|
|
return false;
|
|
}
|
|
getEffects().setTargetPointer(new FixedTarget(event.getTargetId(), game));
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public BlocksCreatureTriggeredAbility copy() {
|
|
return new BlocksCreatureTriggeredAbility(this);
|
|
}
|
|
}
|