mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Hypersonic Dragon - Fixed that Sorcery cards could be cast from every zone.
This commit is contained in:
parent
f9ecc06f6e
commit
2a48b4320f
1 changed files with 14 additions and 41 deletions
|
@ -27,24 +27,30 @@
|
||||||
*/
|
*/
|
||||||
package mage.sets.returntoravnica;
|
package mage.sets.returntoravnica;
|
||||||
|
|
||||||
import mage.constants.*;
|
import java.util.UUID;
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.abilities.Ability;
|
|
||||||
import mage.abilities.common.SimpleStaticAbility;
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
import mage.abilities.effects.AsThoughEffectImpl;
|
import mage.abilities.effects.common.continious.CastAsThoughItHadFlashEffect;
|
||||||
import mage.abilities.keyword.FlyingAbility;
|
import mage.abilities.keyword.FlyingAbility;
|
||||||
import mage.abilities.keyword.HasteAbility;
|
import mage.abilities.keyword.HasteAbility;
|
||||||
import mage.cards.Card;
|
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.game.Game;
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Duration;
|
||||||
import java.util.UUID;
|
import mage.constants.Rarity;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
import mage.filter.common.FilterCreatureCard;
|
||||||
|
import mage.filter.predicate.mageobject.CardTypePredicate;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author magenoxx_at_gmail.com
|
* @author magenoxx_at_gmail.com
|
||||||
*/
|
*/
|
||||||
public class HypersonicDragon extends CardImpl<HypersonicDragon> {
|
public class HypersonicDragon extends CardImpl<HypersonicDragon> {
|
||||||
|
|
||||||
|
private static final FilterCreatureCard filter = new FilterCreatureCard("sorcery spells");
|
||||||
|
static {
|
||||||
|
filter.add(new CardTypePredicate(CardType.SORCERY));
|
||||||
|
}
|
||||||
|
|
||||||
public HypersonicDragon(UUID ownerId) {
|
public HypersonicDragon(UUID ownerId) {
|
||||||
super(ownerId, 170, "Hypersonic Dragon", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{U}{R}");
|
super(ownerId, 170, "Hypersonic Dragon", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{U}{R}");
|
||||||
this.expansionSetCode = "RTR";
|
this.expansionSetCode = "RTR";
|
||||||
|
@ -60,7 +66,7 @@ public class HypersonicDragon extends CardImpl<HypersonicDragon> {
|
||||||
// Haste
|
// Haste
|
||||||
this.addAbility(HasteAbility.getInstance());
|
this.addAbility(HasteAbility.getInstance());
|
||||||
// You may cast sorcery spells as though they had flash.
|
// You may cast sorcery spells as though they had flash.
|
||||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new HypersonicDragonEffect()));
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CastAsThoughItHadFlashEffect(Duration.WhileOnBattlefield, filter)));
|
||||||
}
|
}
|
||||||
|
|
||||||
public HypersonicDragon(final HypersonicDragon card) {
|
public HypersonicDragon(final HypersonicDragon card) {
|
||||||
|
@ -72,36 +78,3 @@ public class HypersonicDragon extends CardImpl<HypersonicDragon> {
|
||||||
return new HypersonicDragon(this);
|
return new HypersonicDragon(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class HypersonicDragonEffect extends AsThoughEffectImpl<HypersonicDragonEffect> {
|
|
||||||
|
|
||||||
public HypersonicDragonEffect() {
|
|
||||||
super(AsThoughEffectType.CAST, Duration.WhileOnBattlefield, Outcome.Benefit);
|
|
||||||
staticText = "You may cast sorcery spells as though they had flash";
|
|
||||||
}
|
|
||||||
|
|
||||||
public HypersonicDragonEffect(final HypersonicDragonEffect effect) {
|
|
||||||
super(effect);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean apply(Game game, Ability source) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public HypersonicDragonEffect copy() {
|
|
||||||
return new HypersonicDragonEffect(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean applies(UUID sourceId, Ability source, Game game) {
|
|
||||||
Card card = game.getCard(sourceId);
|
|
||||||
if (card != null) {
|
|
||||||
if (card.getCardType().contains(CardType.SORCERY) && card.getOwnerId().equals(source.getControllerId())) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue