Update *.sh and *.java files to use Unix line endings

This commit is contained in:
arcox 2020-07-09 13:07:26 -04:00
parent a6d03c925f
commit 9c7982e8f6
273 changed files with 26704 additions and 26704 deletions

View file

@ -1,34 +1,34 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author spike
*/
public final class StarfishToken extends TokenImpl {
public StarfishToken() {
this(null, 0);
}
public StarfishToken(String setCode, int tokenType) {
super("Starfish", "0/1 blue Starfish creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.STARFISH);
color.setBlue(true);
power = new MageInt(0);
toughness = new MageInt(1);
}
public StarfishToken(final StarfishToken token) {
super(token);
}
@Override
public StarfishToken copy() {
return new StarfishToken(this);
}
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author spike
*/
public final class StarfishToken extends TokenImpl {
public StarfishToken() {
this(null, 0);
}
public StarfishToken(String setCode, int tokenType) {
super("Starfish", "0/1 blue Starfish creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.STARFISH);
color.setBlue(true);
power = new MageInt(0);
toughness = new MageInt(1);
}
public StarfishToken(final StarfishToken token) {
super(token);
}
@Override
public StarfishToken copy() {
return new StarfishToken(this);
}
}