Implemented Gemini Engine

This commit is contained in:
Evan Kranzler 2017-09-18 10:40:15 -04:00
parent 8586956552
commit 6f4d77fc0f
3 changed files with 135 additions and 0 deletions

View file

@ -0,0 +1,17 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
public class GeminiEngineTwinToken extends Token {
public GeminiEngineTwinToken(int power, int toughness) {
super("Twin", "colorless Construct artifact creature token named Twin that's attacking. Its power is equal to Gemini Engine's power and its toughness is equal to Gemini Engine's toughness.");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.CONSTRUCT);
this.power = new MageInt(power);
this.toughness = new MageInt(toughness);
}
}