mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[SLD] Implement Storm, Force of Nature
This commit is contained in:
parent
3ad9868153
commit
991e142fa8
2 changed files with 222 additions and 0 deletions
57
Mage.Sets/src/mage/cards/s/StormForceOfNature.java
Normal file
57
Mage.Sets/src/mage/cards/s/StormForceOfNature.java
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility;
|
||||
import mage.abilities.effects.common.continuous.NextSpellCastHasAbilityEffect;
|
||||
import mage.abilities.keyword.StormAbility;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.VigilanceAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.common.FilterInstantOrSorceryCard;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Grath
|
||||
*/
|
||||
public final class StormForceOfNature extends CardImpl {
|
||||
|
||||
private static final FilterCard filter = new FilterInstantOrSorceryCard("instant or sorcery spell");
|
||||
|
||||
public StormForceOfNature(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}{U}{R}");
|
||||
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.MUTANT);
|
||||
this.subtype.add(SubType.HERO);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Vigilance
|
||||
this.addAbility(VigilanceAbility.getInstance());
|
||||
|
||||
// Ceaseless Tempest - Whenever Storm deals combat damage to a player, the next instant or sorcery spell you
|
||||
// cast this turn has storm. (When you cast it copy it for each spell cast before it this turn. You may choose
|
||||
// new targets for the copies.)
|
||||
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new NextSpellCastHasAbilityEffect(
|
||||
new StormAbility(), filter)).withFlavorWord("Ceaseless Tempest"));
|
||||
|
||||
}
|
||||
|
||||
private StormForceOfNature(final StormForceOfNature card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public StormForceOfNature copy() {
|
||||
return new StormForceOfNature(this);
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue