[FIC] Implement Tidus, Yuna's Guardian (#13555)

* [FIC] Implement Tidus, Yuna's Guardian

* merge fix
This commit is contained in:
Evan Kranzler 2025-05-23 08:33:50 -04:00 committed by Failure
parent 3444a93342
commit 53532a7f60
11 changed files with 280 additions and 402 deletions

View file

@ -4,29 +4,16 @@ import mage.abilities.Ability;
import mage.abilities.common.ActivateAsSorceryActivatedAbility;
import mage.abilities.costs.common.TapSourceCost;
import mage.abilities.costs.mana.GenericManaCost;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.counter.MoveCounterTargetsEffect;
import mage.abilities.mana.ColorlessManaAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.choices.Choice;
import mage.choices.ChoiceImpl;
import mage.constants.CardType;
import mage.constants.Outcome;
import mage.constants.Zone;
import mage.counters.Counter;
import mage.counters.CounterType;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterControlledPermanent;
import mage.filter.predicate.other.AnotherTargetPredicate;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.target.TargetPermanent;
import mage.target.common.TargetControlledPermanent;
import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.Set;
import java.util.UUID;
/**
@ -34,6 +21,12 @@ import java.util.UUID;
*/
public final class NestingGrounds extends CardImpl {
private static final FilterPermanent filter = new FilterPermanent("another target");
static {
filter.add(new AnotherTargetPredicate(2));
}
public NestingGrounds(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
@ -41,19 +34,10 @@ public final class NestingGrounds extends CardImpl {
this.addAbility(new ColorlessManaAbility());
// {1}, {T}: Move a counter from target permanent you control onto another target permanent. Activate this ability only any time you could cast a sorcery.
Ability ability = new ActivateAsSorceryActivatedAbility(Zone.BATTLEFIELD, new NestingGroundsEffect(), new GenericManaCost(1));
Ability ability = new ActivateAsSorceryActivatedAbility(new MoveCounterTargetsEffect(), new GenericManaCost(1));
ability.addCost(new TapSourceCost());
// target 1
TargetControlledPermanent target1 = new TargetControlledPermanent(new FilterControlledPermanent("permanent to remove counter from"));
target1.setTargetTag(1);
ability.addTarget(target1);
// target 2
FilterPermanent filter = new FilterPermanent("permanent to put counter on");
filter.add(new AnotherTargetPredicate(2));
TargetPermanent target2 = new TargetPermanent(filter);
target2.setTargetTag(2);
ability.addTarget(target2);
ability.addTarget(new TargetControlledPermanent().withChooseHint("to remove a counter from"));
ability.addTarget(new TargetPermanent(filter).withChooseHint("to move a counter to").setTargetTag(2));
this.addAbility(ability);
}
@ -66,59 +50,3 @@ public final class NestingGrounds extends CardImpl {
return new NestingGrounds(this);
}
}
class NestingGroundsEffect extends OneShotEffect {
NestingGroundsEffect() {
super(Outcome.AIDontUseIt);
this.staticText = "Move a counter from target permanent you control onto another target permanent";
}
private NestingGroundsEffect(final NestingGroundsEffect effect) {
super(effect);
}
@Override
public NestingGroundsEffect copy() {
return new NestingGroundsEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
Permanent fromPermanent = game.getPermanent(source.getFirstTarget());
Permanent toPermanent = game.getPermanent(source.getTargets().get(1).getFirstTarget());
if (fromPermanent == null
|| toPermanent == null
|| controller == null
|| fromPermanent.getCounters(game).size() == 0) {
return false;
}
if (fromPermanent.getCounters(game).size() == 1) {
for (Counter counter : fromPermanent.getCounters(game).values()) {
fromPermanent.removeCounters(counter.getName(), 1, source, game);
toPermanent.addCounters(new Counter(counter.getName()), source.getControllerId(), source, game);
}
return true;
}
Choice choice = new ChoiceImpl(false);
Set<String> possibleChoices = new LinkedHashSet<>(fromPermanent.getCounters(game).keySet());
choice.setChoices(possibleChoices);
choice.setMessage("Choose a counter");
if (controller.choose(outcome, choice, game)) {
String chosen = choice.getChoice();
if (fromPermanent.getCounters(game).containsKey(chosen)) {
CounterType counterType = CounterType.findByName(chosen);
if (counterType != null) {
Counter counter = counterType.createInstance();
fromPermanent.removeCounters(counterType.getName(), 1, source, game);
toPermanent.addCounters(counter, source.getControllerId(), source, game);
return true;
}
}
}
return false;
}
}