mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
* Added missing Centaur token reference, get cantaur token by random.
This commit is contained in:
parent
e29eea791c
commit
8afc1e24bb
2 changed files with 3 additions and 1 deletions
|
@ -175,6 +175,7 @@ $|Generate|TOK:MLP|Thopter|
|
|||
|Generate|TOK:RTR|Assassin|
|
||||
|Generate|TOK:RTR|Dragon|
|
||||
|Generate|TOK:RTR|Goblin|
|
||||
|Generate|TOK:RTR|Centaur 1|
|
||||
|Generate|TOK:RTR|Ooze|
|
||||
|Generate|TOK:RTR|Rhino|
|
||||
|Generate|TOK:RTR|Saproling|
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import java.util.Random;
|
||||
import mage.constants.CardType;
|
||||
import mage.MageInt;
|
||||
import mage.ObjectColor;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -41,6 +41,7 @@ public class CentaurToken extends Token {
|
|||
public CentaurToken() {
|
||||
super("Centaur", "3/3 green Centaur creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
setTokenType(new Random().nextInt(2) +1); // randomly take image 1 or 2
|
||||
color.setGreen(true);
|
||||
subtype.add("Centaur");
|
||||
power = new MageInt(3);
|
||||
|
|
Loading…
Reference in a new issue