forked from External/mage
* init commit * AdherentOfHope init commit * BasrisAegis init commit * don't change test * FungalRebirth init commit * GarruksWarsteed init commit * KeralKeepDisciples init commit * ChromaticOrrery init commit * add back filter names * fix GolgariFindbroker text * address comments Co-authored-by: Evan Kranzler <theelk801@gmail.com>
61 lines
2.2 KiB
Java
61 lines
2.2 KiB
Java
package mage.abilities.common;
|
|
|
|
import mage.abilities.LoyaltyAbility;
|
|
import mage.abilities.TriggeredAbilityImpl;
|
|
import mage.abilities.effects.Effect;
|
|
import mage.constants.SubType;
|
|
import mage.constants.Zone;
|
|
import mage.game.Game;
|
|
import mage.game.events.GameEvent;
|
|
import mage.game.permanent.Permanent;
|
|
import mage.game.stack.StackAbility;
|
|
|
|
public class ActivatePlaneswalkerLoyaltyAbilityTriggeredAbility extends TriggeredAbilityImpl {
|
|
|
|
private final SubType planeswalkerSubType;
|
|
|
|
public ActivatePlaneswalkerLoyaltyAbilityTriggeredAbility(Effect effect, SubType planeswalkerSubType) {
|
|
super(Zone.BATTLEFIELD, effect, false);
|
|
this.planeswalkerSubType = planeswalkerSubType;
|
|
}
|
|
|
|
private ActivatePlaneswalkerLoyaltyAbilityTriggeredAbility(final ActivatePlaneswalkerLoyaltyAbilityTriggeredAbility ability) {
|
|
super(ability);
|
|
this.planeswalkerSubType = ability.planeswalkerSubType;
|
|
}
|
|
|
|
@Override
|
|
public ActivatePlaneswalkerLoyaltyAbilityTriggeredAbility copy() {
|
|
return new ActivatePlaneswalkerLoyaltyAbilityTriggeredAbility(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean checkEventType(GameEvent event, Game game) {
|
|
return event.getType() == GameEvent.EventType.ACTIVATED_ABILITY;
|
|
}
|
|
|
|
@Override
|
|
public boolean checkTrigger(GameEvent event, Game game) {
|
|
if (!event.getPlayerId().equals(getControllerId())) {
|
|
return false;
|
|
}
|
|
StackAbility stackAbility = (StackAbility) game.getStack().getStackObject(event.getSourceId());
|
|
if (stackAbility == null || !(stackAbility.getStackAbility() instanceof LoyaltyAbility)) {
|
|
return false;
|
|
}
|
|
Permanent permanent = stackAbility.getSourcePermanentOrLKI(game);
|
|
if (permanent == null || !permanent.isPlaneswalker()
|
|
|| !permanent.hasSubtype(planeswalkerSubType, game)) {
|
|
return false;
|
|
}
|
|
Effect effect = this.getEffects().get(0);
|
|
effect.setValue("stackAbility", stackAbility);
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public String getRule() {
|
|
return "Whenever you activate a loyalty ability of a " + planeswalkerSubType.getDescription() + " planeswalker, " +
|
|
this.getEffects().get(0).getText(getModes().getMode()) + ".";
|
|
}
|
|
}
|