mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Implemented Giant Opportunity
This commit is contained in:
parent
56c68a9d9f
commit
64dcfb840d
3 changed files with 73 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class GiantOpportunityToken extends TokenImpl {
|
||||
|
||||
public GiantOpportunityToken() {
|
||||
super("Giant", "7/7 green Giant creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.GIANT);
|
||||
color.setGreen(true);
|
||||
power = new MageInt(7);
|
||||
toughness = new MageInt(7);
|
||||
}
|
||||
|
||||
private GiantOpportunityToken(final GiantOpportunityToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public GiantOpportunityToken copy() {
|
||||
return new GiantOpportunityToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue