[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:
Susucre 2023-10-08 07:39:50 +02:00 committed by GitHub
parent 39522cdc59
commit b7ad2d8c86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 359 additions and 4 deletions

View file

@ -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);
}
}