Fixed casting restrictions of Fiend of the Shadows, fixed card number of PitFight.

This commit is contained in:
LevelX2 2013-01-23 12:56:48 +01:00
parent 5241841a37
commit 514d16ee3e
2 changed files with 5 additions and 3 deletions

View file

@ -124,8 +124,10 @@ class FiendOfTheShadowsEffect extends AsThoughEffectImpl<FiendOfTheShadowsEffect
if (card != null) {
ExileZone zone = game.getExile().getExileZone(exileId);
if (zone != null && zone.contains(card.getId())) {
card.setControllerId(source.getControllerId());
return true;
if (card.getCardType().contains(CardType.INSTANT) || game.canPlaySorcery(source.getControllerId())) {
card.setControllerId(source.getControllerId());
return true;
}
}
}
return false;

View file

@ -42,7 +42,7 @@ import mage.target.common.TargetCreaturePermanent;
public class PitFight extends CardImpl<PitFight> {
public PitFight(UUID ownerId) {
super(ownerId, 225, "Pit Fight", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{R/G}");
super(ownerId, 223, "Pit Fight", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{R/G}");
this.expansionSetCode = "GTC";
this.color.setRed(true);