forked from External/mage
implemented Vedalken Blademaster - KLD
This commit is contained in:
parent
6ee1a2acf1
commit
3085f4e6a4
1 changed files with 38 additions and 0 deletions
38
Mage.Sets/src/mage/sets/kaladesh/VedalkenBlademaster.java
Normal file
38
Mage.Sets/src/mage/sets/kaladesh/VedalkenBlademaster.java
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
package mage.sets.kaladesh;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.ProwessAbility;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* Created by IGOUDT on 16-9-2016.
|
||||
*/
|
||||
public class VedalkenBlademaster extends CardImpl {
|
||||
|
||||
public VedalkenBlademaster(final UUID ownerId){
|
||||
super(ownerId, 68, "Vedalken Blademaster", Rarity.COMMON, new CardType[]{CardType.CREATURE},"{2U}");
|
||||
this.subtype.add("Vedalken");
|
||||
this.subtype.add("Soldier");
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
this.addAbility(new ProwessAbility());
|
||||
|
||||
|
||||
}
|
||||
|
||||
public VedalkenBlademaster(final VedalkenBlademaster card){
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VedalkenBlademaster copy() {
|
||||
return new VedalkenBlademaster(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue