mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Delver of Secrets - Fixed that the night side Insectile Aberration had no color but should be a blue permanent.
This commit is contained in:
parent
b679699ea1
commit
baa24ce5b6
2 changed files with 2 additions and 3 deletions
|
@ -33,7 +33,6 @@ import mage.constants.Outcome;
|
|||
import mage.constants.Rarity;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
import mage.abilities.common.BeginningOfUpkeepTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.TransformSourceEffect;
|
||||
|
@ -43,11 +42,9 @@ import mage.cards.CardImpl;
|
|||
import mage.cards.Cards;
|
||||
import mage.cards.CardsImpl;
|
||||
import mage.constants.TargetController;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.common.FilterInstantOrSorceryCard;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.players.Player;
|
||||
|
||||
|
|
|
@ -47,6 +47,8 @@ public class InsectileAberration extends CardImpl {
|
|||
this.subtype.add("Human");
|
||||
this.subtype.add("Insect");
|
||||
|
||||
this.color.setBlue(true);
|
||||
|
||||
// this card is the second face of double-faced card Delver of Secrets
|
||||
this.nightCard = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue