mirror of
https://github.com/correl/mage.git
synced 2025-04-03 09:18:59 -09:00
Implemented Arasta of the Endless Web
This commit is contained in:
parent
bb59cedbd9
commit
be068fb9cf
2 changed files with 49 additions and 0 deletions
Mage.Sets/src/mage
48
Mage.Sets/src/mage/cards/a/ArastaOfTheEndlessWeb.java
Normal file
48
Mage.Sets/src/mage/cards/a/ArastaOfTheEndlessWeb.java
Normal file
|
@ -0,0 +1,48 @@
|
|||
package mage.cards.a;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SpellCastOpponentTriggeredAbility;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.keyword.ReachAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.permanent.token.SpiderToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ArastaOfTheEndlessWeb extends CardImpl {
|
||||
|
||||
public ArastaOfTheEndlessWeb(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{2}{G}{G}");
|
||||
|
||||
this.addSuperType(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.SPIDER);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(5);
|
||||
|
||||
// Reach
|
||||
this.addAbility(ReachAbility.getInstance());
|
||||
|
||||
// Whenever an opponent casts an instant or sorcery spell, create a 1/2 green Spider creature token with reach.
|
||||
this.addAbility(new SpellCastOpponentTriggeredAbility(
|
||||
new CreateTokenEffect(new SpiderToken()),
|
||||
StaticFilters.FILTER_SPELL_AN_INSTANT_OR_SORCERY, false
|
||||
));
|
||||
}
|
||||
|
||||
private ArastaOfTheEndlessWeb(final ArastaOfTheEndlessWeb card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ArastaOfTheEndlessWeb copy() {
|
||||
return new ArastaOfTheEndlessWeb(this);
|
||||
}
|
||||
}
|
|
@ -28,6 +28,7 @@ public final class TherosBeyondDeath extends ExpansionSet {
|
|||
|
||||
cards.add(new SetCardInfo("Allure of the Unknown", 207, Rarity.RARE, mage.cards.a.AllureOfTheUnknown.class));
|
||||
cards.add(new SetCardInfo("Aphemia, the Cacophony", 84, Rarity.RARE, mage.cards.a.AphemiaTheCacophony.class));
|
||||
cards.add(new SetCardInfo("Arasta of the Endless Web", 165, Rarity.RARE, mage.cards.a.ArastaOfTheEndlessWeb.class));
|
||||
cards.add(new SetCardInfo("Archon of Falling Stars", 2, Rarity.UNCOMMON, mage.cards.a.ArchonOfFallingStars.class));
|
||||
cards.add(new SetCardInfo("Ashiok's Erasure", 43, Rarity.RARE, mage.cards.a.AshioksErasure.class));
|
||||
cards.add(new SetCardInfo("Ashiok, Nightmare Muse", 208, Rarity.MYTHIC, mage.cards.a.AshiokNightmareMuse.class));
|
||||
|
|
Loading…
Add table
Reference in a new issue