forked from External/mage
93 lines
3.5 KiB
Java
93 lines
3.5 KiB
Java
|
|
package mage.cards.s;
|
|
|
|
import java.util.UUID;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.BeginningOfUpkeepTriggeredAbility;
|
|
import mage.abilities.effects.OneShotEffect;
|
|
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
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.Target;
|
|
import mage.target.common.TargetControlledPermanent;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public final class Smokestack extends CardImpl {
|
|
|
|
public Smokestack(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{4}");
|
|
|
|
// At the beginning of your upkeep, you may put a soot counter on Smokestack.
|
|
this.addAbility(new BeginningOfUpkeepTriggeredAbility(new AddCountersSourceEffect(CounterType.SOOT.createInstance()), TargetController.YOU, true));
|
|
|
|
// At the beginning of each player's upkeep, that player sacrifices a permanent for each soot counter on Smokestack.
|
|
this.addAbility(new BeginningOfUpkeepTriggeredAbility(new SmokestackEffect(), TargetController.ANY, false));
|
|
}
|
|
|
|
public Smokestack(final Smokestack card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public Smokestack copy() {
|
|
return new Smokestack(this);
|
|
}
|
|
}
|
|
|
|
class SmokestackEffect extends OneShotEffect {
|
|
|
|
public SmokestackEffect() {
|
|
super(Outcome.Sacrifice);
|
|
this.staticText = "that player sacrifices a permanent for each soot counter on Smokestack";
|
|
}
|
|
|
|
public SmokestackEffect(final SmokestackEffect effect) {
|
|
super(effect);
|
|
}
|
|
|
|
@Override
|
|
public SmokestackEffect copy() {
|
|
return new SmokestackEffect(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
Player activePlayer = game.getPlayer(getTargetPointer().getFirst(game, source));
|
|
Permanent sourcePermanent = game.getPermanentOrLKIBattlefield(source.getSourceId());
|
|
if (activePlayer != null && sourcePermanent != null) {
|
|
int count = sourcePermanent.getCounters(game).getCount(CounterType.SOOT);
|
|
if (count > 0) {
|
|
int amount = Math.min(count, game.getBattlefield().countAll(new FilterControlledPermanent(), activePlayer.getId(), game));
|
|
Target target = new TargetControlledPermanent(amount, amount, new FilterControlledPermanent(), true);
|
|
//A spell or ability could have removed the only legal target this player
|
|
//had, if thats the case this ability should fizzle.
|
|
if (target.canChoose(activePlayer.getId(), game)) {
|
|
while (!target.isChosen() && target.canChoose(activePlayer.getId(), game) && activePlayer.canRespond()) {
|
|
activePlayer.choose(Outcome.Sacrifice, target, source.getSourceId(), game);
|
|
}
|
|
|
|
for (int idx = 0; idx < target.getTargets().size(); idx++) {
|
|
Permanent permanent = game.getPermanent(target.getTargets().get(idx));
|
|
|
|
if (permanent != null) {
|
|
permanent.sacrifice(source.getSourceId(), game);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|