Added missing supertype

This commit is contained in:
L_J 2018-02-03 21:55:28 +00:00 committed by GitHub
parent a19610cb57
commit 0f13e3428b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,12 @@ import mage.abilities.costs.mana.ManaCostsImpl;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.NameACardEffect;
import mage.cards.*;
import mage.constants.*;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.Duration;
import mage.constants.Outcome;
import mage.constants.SuperType;
import mage.constants.Zone;
import mage.game.Game;
import mage.players.Player;
import mage.target.common.TargetOpponent;
@ -52,6 +57,7 @@ public class Nebuchadnezzar extends CardImpl {
public Nebuchadnezzar(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{U}{B}");
addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.HUMAN);
this.subtype.add(SubType.WIZARD);
this.power = new MageInt(3);
@ -121,5 +127,4 @@ class NebuchadnezzarEffect extends OneShotEffect {
public NebuchadnezzarEffect copy() {
return new NebuchadnezzarEffect(this);
}
}