mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
69 lines
2.2 KiB
Java
69 lines
2.2 KiB
Java
package mage.cards.r;
|
|
|
|
import java.util.UUID;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.SimpleStaticAbility;
|
|
import mage.abilities.costs.common.SacrificeTargetCost;
|
|
import mage.abilities.effects.PayCostToAttackBlockEffectImpl;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.Duration;
|
|
import mage.constants.Outcome;
|
|
import mage.constants.Zone;
|
|
import mage.filter.StaticFilters;
|
|
import mage.game.Game;
|
|
import mage.game.events.GameEvent;
|
|
import mage.game.permanent.Permanent;
|
|
|
|
/**
|
|
*
|
|
* @author jeffwadsworth
|
|
*/
|
|
public final class Reclamation extends CardImpl {
|
|
|
|
public Reclamation(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{2}{G}{W}");
|
|
|
|
// Black creatures can't attack unless their controller sacrifices a land for each black creature they control that's attacking.
|
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ReclamationCostToAttackBlockEffect()));
|
|
|
|
}
|
|
|
|
private Reclamation(final Reclamation card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public Reclamation copy() {
|
|
return new Reclamation(this);
|
|
}
|
|
}
|
|
|
|
class ReclamationCostToAttackBlockEffect extends PayCostToAttackBlockEffectImpl {
|
|
|
|
ReclamationCostToAttackBlockEffect() {
|
|
super(Duration.WhileOnBattlefield, Outcome.Detriment, RestrictType.ATTACK,
|
|
new SacrificeTargetCost(StaticFilters.FILTER_LAND));
|
|
staticText = "Black creatures can't attack unless their controller sacrifices a land for each " +
|
|
"black creature they control that's attacking. <i>(This cost is paid as attackers are declared.)</i>";
|
|
}
|
|
|
|
private ReclamationCostToAttackBlockEffect(final ReclamationCostToAttackBlockEffect effect) {
|
|
super(effect);
|
|
}
|
|
|
|
@Override
|
|
public boolean applies(GameEvent event, Ability source, Game game) {
|
|
Permanent permanent = game.getPermanent(event.getSourceId());
|
|
return (permanent != null
|
|
&& permanent.isCreature(game)
|
|
&& permanent.getColor(game).isBlack());
|
|
}
|
|
|
|
@Override
|
|
public ReclamationCostToAttackBlockEffect copy() {
|
|
return new ReclamationCostToAttackBlockEffect(this);
|
|
}
|
|
|
|
}
|