mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fixed casting restrictions of Fiend of the Shadows, fixed card number of PitFight.
This commit is contained in:
parent
5241841a37
commit
514d16ee3e
2 changed files with 5 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue