mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[WHO] Implement Five Hundred Year Diary, Flatline, Frost Fair Lure Fish, Laser Screwdriver, Sonic Screwdriver (#11274)
* Add Hint to Confront the Unknown * [WHO] Implement Five Hundred Year Diary * [WHO] Implement Flatline * [WHO] Implement Frost Fair Lure Fish * [WHO] Implement Laser Screwdriver * [WHO] Implement Sonic Screwdriver
This commit is contained in:
parent
39522cdc59
commit
b7ad2d8c86
8 changed files with 359 additions and 4 deletions
|
|
@ -0,0 +1,28 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class FishNoAbilityToken extends TokenImpl {
|
||||
|
||||
public FishNoAbilityToken() {
|
||||
super("Fish Token", "1/1 blue Fish creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.FISH);
|
||||
color.setBlue(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
protected FishNoAbilityToken(final FishNoAbilityToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public FishNoAbilityToken copy() {
|
||||
return new FishNoAbilityToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue