mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
[SNC] Implemented Exotic Pets
This commit is contained in:
parent
1ed3bce6e0
commit
a34747257c
4 changed files with 156 additions and 0 deletions
31
Mage/src/main/java/mage/game/permanent/token/FishToken.java
Normal file
31
Mage/src/main/java/mage/game/permanent/token/FishToken.java
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.CantBeBlockedSourceAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class FishToken extends TokenImpl {
|
||||
|
||||
public FishToken() {
|
||||
super("Fish Token", "1/1 blue Fish creature token with \"This creature can't be blocked.\"");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.FISH);
|
||||
color.setBlue(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
addAbility(new CantBeBlockedSourceAbility("this creature can't be blocked"));
|
||||
}
|
||||
|
||||
public FishToken(final FishToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public FishToken copy() {
|
||||
return new FishToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue