mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[FDN] Implement Dionus, Elvish Archdruid
Plus added to spoiler. Card previewed on https://magic.wizards.com/en/news/announcements/foundations-jumpstart-booster-themes
This commit is contained in:
parent
5b0eba7068
commit
9799378922
3 changed files with 54 additions and 0 deletions
52
Mage.Sets/src/mage/cards/d/DionusElvishArchdruid.java
Normal file
52
Mage.Sets/src/mage/cards/d/DionusElvishArchdruid.java
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
package mage.cards.d;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.BecomesTappedSourceTriggeredAbility;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.common.UntapSourceEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityControlledEffect;
|
||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.counters.CounterType;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Grath
|
||||
*/
|
||||
public final class DionusElvishArchdruid extends CardImpl {
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent(SubType.ELF, "Elves");
|
||||
|
||||
public DionusElvishArchdruid(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{G}");
|
||||
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.ELF);
|
||||
this.subtype.add(SubType.DRUID);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Elves you control have "Whenever this creature becomes tapped during your turn, untap it and put a +1/+1 counter on it. This ability triggers only once each turn."
|
||||
Ability untapAndGrow = new BecomesTappedSourceTriggeredAbility(new UntapSourceEffect()).setTriggersLimitEachTurn(1);
|
||||
untapAndGrow.addEffect(new AddCountersSourceEffect(CounterType.P1P1.createInstance()));
|
||||
|
||||
this.addAbility(new SimpleStaticAbility(new GainAbilityControlledEffect(untapAndGrow,
|
||||
Duration.WhileOnBattlefield, filter, false)));
|
||||
}
|
||||
|
||||
private DionusElvishArchdruid(final DionusElvishArchdruid card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DionusElvishArchdruid copy() {
|
||||
return new DionusElvishArchdruid(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -22,6 +22,7 @@ public final class FoundationsJumpstart extends ExpansionSet {
|
|||
this.hasBoosters = false; // temporary
|
||||
|
||||
cards.add(new SetCardInfo("Brimaz, King of Oreskos", 58, Rarity.MYTHIC, mage.cards.b.BrimazKingOfOreskos.class));
|
||||
cards.add(new SetCardInfo("Dionus, Elvish Archdruid", 52, Rarity.UNCOMMON, mage.cards.d.DionusElvishArchdruid.class));
|
||||
cards.add(new SetCardInfo("Vilis, Broker of Blood", 70, Rarity.RARE, mage.cards.v.VilisBrokerOfBlood.class));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -55565,3 +55565,4 @@ General Kreat, the Boltbringer|Foundations Jumpstart|48|U|{2}{R}|Legendary Creat
|
|||
Shroofus Sproutsire|Foundations Jumpstart|54|R|{2}{G}|Legendary Creature - Saproling|1|1|Trample$Whenever a Saproling you control deals combat damage to a player, create that many 1/1 green Saproling creature tokens.|
|
||||
Brimaz, King of Oreskos|Foundations Jumpstart|58|M|{1}{W}{W}|Legendary Creature - Cat Soldier|3|4|Vigilance$Whenever Brimaz, King of Oreskos attacks, create a 1/1 white Cat Soldier creature token with vigilance that's attacking.$Whenever Brimaz blocks a creature, create a 1/1 white Cat Soldier creature token with vigilance that's blocking that creature.|
|
||||
Vilis, Broker of Blood|Foundations Jumpstart|70|R|{5}{B}{B}{B}|Legendary Creature - Demon|8|8|Flying${B}, Pay 2 life: Target creature gets -1/-1 until end of turn.$Whenever you lose life, draw that many cards.|
|
||||
Dionus, Elvish Archdruid|Foundations Jumpstart|52|U|{3}{G}|Legendary Creature - Elf Druid|3|3|Elves you control have "Whenever this creature becomes tapped during your turn, untap it and put a +1/+1 counter on it. This ability triggers only once each turn."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue