mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
Implemented Gemini Engine
This commit is contained in:
parent
8586956552
commit
6f4d77fc0f
3 changed files with 135 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue