mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
Added missing supertype
This commit is contained in:
parent
a19610cb57
commit
0f13e3428b
1 changed files with 7 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue