mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
* ContinuousRuleModifyingEffectImpl * OneShotEffect * ContinuousEffectImpl * fix CRLF * *EffectImpl * *Effect * DoIfCostPaid * cleanup token copy constructors -> private * fix build error from misspelled class name
29 lines
714 B
Java
29 lines
714 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
* @author spjspj
|
|
*/
|
|
public final class CrushOfTentaclesToken extends TokenImpl {
|
|
|
|
public CrushOfTentaclesToken() {
|
|
super("Octopus Token", "8/8 blue Octopus creature");
|
|
this.cardType.add(CardType.CREATURE);
|
|
this.color.setBlue(true);
|
|
this.subtype.add(SubType.OCTOPUS);
|
|
this.power = new MageInt(8);
|
|
this.toughness = new MageInt(8);
|
|
}
|
|
|
|
private CrushOfTentaclesToken(final CrushOfTentaclesToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public CrushOfTentaclesToken copy() {
|
|
return new CrushOfTentaclesToken(this);
|
|
}
|
|
|
|
}
|