[WOE] Implement Night of the Sweets' Revenge (#10875)

This commit is contained in:
Susucre 2023-08-18 18:16:38 +02:00 committed by GitHub
parent 28a0d55869
commit faf8803cab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 69 additions and 0 deletions

View file

@ -0,0 +1,68 @@
package mage.cards.n;
import mage.abilities.Ability;
import mage.abilities.common.ActivateAsSorceryActivatedAbility;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.costs.common.SacrificeSourceCost;
import mage.abilities.costs.mana.ManaCostsImpl;
import mage.abilities.dynamicvalue.DynamicValue;
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.effects.common.continuous.BoostControlledEffect;
import mage.abilities.effects.common.continuous.GainAbilityControlledEffect;
import mage.abilities.hint.Hint;
import mage.abilities.hint.ValueHint;
import mage.abilities.mana.GreenManaAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.filter.StaticFilters;
import mage.game.permanent.token.FoodToken;
import java.util.UUID;
/**
*
* @author Susucr
*/
public final class NightOfTheSweetsRevenge extends CardImpl {
private static final DynamicValue xValue = new PermanentsOnBattlefieldCount(StaticFilters.FILTER_CONTROLLED_FOOD);
private static final Hint hint = new ValueHint("Foods you control", xValue);
public NightOfTheSweetsRevenge(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{G}");
// When Night of the Sweets' Revenge enters the battlefield, create a Food token.
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new FoodToken())));
// Foods you control have "{T}: Add {G}."
this.addAbility(new SimpleStaticAbility(new GainAbilityControlledEffect(
new GreenManaAbility(), Duration.WhileOnBattlefield,
StaticFilters.FILTER_CONTROLLED_FOOD
)));
// {5}{G}{G}, Sacrifice Night of the Sweets' Revenge: Creatures you control get +X/+X until end of turn, where X is the number of Foods you control. Activate only as a sorcery.
Ability ability = new ActivateAsSorceryActivatedAbility(
new BoostControlledEffect(
xValue, xValue, Duration.EndOfTurn,
StaticFilters.FILTER_PERMANENT_CREATURES, false, true
).setText("creatures you control get +X/+X until end of turn, where X is the number of Foods you control"),
new ManaCostsImpl<>("{5}{G}{G}")
).addHint(hint);
ability.addCost(new SacrificeSourceCost());
this.addAbility(ability);
}
private NightOfTheSweetsRevenge(final NightOfTheSweetsRevenge card) {
super(card);
}
@Override
public NightOfTheSweetsRevenge copy() {
return new NightOfTheSweetsRevenge(this);
}
}

View file

@ -59,6 +59,7 @@ public final class WildsOfEldraine extends ExpansionSet {
cards.add(new SetCardInfo("Moonshaker Cavalry", 21, Rarity.MYTHIC, mage.cards.m.MoonshakerCavalry.class));
cards.add(new SetCardInfo("Mountain", 265, Rarity.LAND, mage.cards.basiclands.Mountain.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Neva, Stalked by Nightmares", 209, Rarity.UNCOMMON, mage.cards.n.NevaStalkedByNightmares.class));
cards.add(new SetCardInfo("Night of the Sweets' Revenge", 178, Rarity.UNCOMMON, mage.cards.n.NightOfTheSweetsRevenge.class));
cards.add(new SetCardInfo("Obyra, Dreaming Duelist", 210, Rarity.UNCOMMON, mage.cards.o.ObyraDreamingDuelist.class));
cards.add(new SetCardInfo("Picnic Ruiner", 232, Rarity.UNCOMMON, mage.cards.p.PicnicRuiner.class));
cards.add(new SetCardInfo("Plains", 262, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS));