mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
Added card "Orbak" and its abilities and effects
This commit is contained in:
parent
0127e659eb
commit
26f2c5feaa
1 changed files with 31 additions and 1 deletions
|
|
@ -1,4 +1,34 @@
|
||||||
package mage.cards.o;
|
package mage.cards.o;
|
||||||
|
|
||||||
public class Orbak {
|
import mage.MageInt;
|
||||||
|
import mage.abilities.keyword.MonstrosityAbility;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Merlingilb
|
||||||
|
*/
|
||||||
|
public class Orbak extends CardImpl {
|
||||||
|
public Orbak(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||||
|
this.addSubType(SubType.BEAST);
|
||||||
|
this.power = new MageInt(2);
|
||||||
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
|
//{4}{W}: Monstrosity 3
|
||||||
|
this.addAbility(new MonstrosityAbility("{4}{W}", 3));
|
||||||
|
}
|
||||||
|
|
||||||
|
public Orbak(final Orbak card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Orbak copy() {
|
||||||
|
return new Orbak(this);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue