mirror of
https://github.com/correl/mage.git
synced 2025-04-10 09:11:04 -09:00
[ANA] - implemented Goblin Bruiser
This commit is contained in:
parent
cdf639ae65
commit
aeab7a6d8f
1 changed files with 33 additions and 0 deletions
33
Mage.Sets/src/mage/cards/g/GoblinBruiser.java
Normal file
33
Mage.Sets/src/mage/cards/g/GoblinBruiser.java
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
package mage.cards.g;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author JayDi85
|
||||||
|
*/
|
||||||
|
public final class GoblinBruiser extends CardImpl {
|
||||||
|
|
||||||
|
public GoblinBruiser(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{R}{R}");
|
||||||
|
this.subtype.add(SubType.GOBLIN);
|
||||||
|
this.subtype.add(SubType.WARRIOR);
|
||||||
|
|
||||||
|
this.power = new MageInt(3);
|
||||||
|
this.toughness = new MageInt(3);
|
||||||
|
}
|
||||||
|
|
||||||
|
public GoblinBruiser(final GoblinBruiser card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GoblinBruiser copy() {
|
||||||
|
return new GoblinBruiser(this);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue