foul-magics/Mage.Sets/src/mage/cards/d/DesecrationDemon.java
2025-04-28 19:03:26 -04:00

100 lines
3.9 KiB
Java

package mage.cards.d;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.triggers.BeginningOfCombatTriggeredAbility;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.keyword.FlyingAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.Outcome;
import mage.constants.TargetController;
import mage.counters.CounterType;
import mage.filter.common.FilterControlledPermanent;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.target.common.TargetControlledPermanent;
/**
*
* @author LevelX2
*/
public final class DesecrationDemon extends CardImpl {
public DesecrationDemon(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}{B}");
this.subtype.add(SubType.DEMON);
this.power = new MageInt(6);
this.toughness = new MageInt(6);
// Flying
this.addAbility(FlyingAbility.getInstance());
// At the beginning of each combat, any opponent may sacrifice a creature. If a player does, tap Desecration Demon and put a +1/+1 counter on it.
this.addAbility(new BeginningOfCombatTriggeredAbility(TargetController.ANY, new DesecrationDemonEffect(), false));
}
private DesecrationDemon(final DesecrationDemon card) {
super(card);
}
@Override
public DesecrationDemon copy() {
return new DesecrationDemon(this);
}
}
class DesecrationDemonEffect extends OneShotEffect {
DesecrationDemonEffect() {
super(Outcome.BoostCreature);
staticText = "any opponent may sacrifice a creature of their choice. If a player does, tap {this} and put a +1/+1 counter on it";
}
private DesecrationDemonEffect(final DesecrationDemonEffect effect) {
super(effect);
}
@Override
public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
Permanent descrationDemon = game.getPermanent(source.getSourceId());
if (controller != null && descrationDemon != null) {
for (UUID opponentId: game.getOpponents(controller.getId())) {
Player opponent = game.getPlayer(opponentId);
if (opponent != null) {
FilterControlledPermanent filter = new FilterControlledPermanent("creature to sacrifice");
filter.add(CardType.CREATURE.getPredicate());
filter.add(TargetController.YOU.getControllerPredicate());
TargetControlledPermanent target = new TargetControlledPermanent(1, 1, filter, false);
if (target.canChoose(opponent.getId(), source, game)) {
if (opponent.chooseUse(Outcome.AIDontUseIt, "Sacrifice a creature to tap " + descrationDemon.getLogName() + "and put a +1/+1 counter on it?", source, game))
{
opponent.choose(Outcome.Sacrifice, target, source, game);
Permanent permanent = game.getPermanent(target.getFirstTarget());
if (permanent != null) {
permanent.sacrifice(source, game);
game.informPlayers(opponent.getLogName() + " sacrifices " + permanent.getLogName() + " to tap " + descrationDemon.getLogName() + ". A +1/+1 counter was put on it");
descrationDemon.tap(source, game);
descrationDemon.addCounters(CounterType.P1P1.createInstance(), source.getControllerId(), source, game);
}
}
}
}
}
return true;
}
return false;
}
@Override
public DesecrationDemonEffect copy() {
return new DesecrationDemonEffect(this);
}
}