forked from External/mage
[DFT] Implement Spikeshell Harrier
This commit is contained in:
parent
b2be328e92
commit
3776a39683
5 changed files with 117 additions and 0 deletions
|
|
@ -4702,6 +4702,14 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void decreaseSpeed(Game game) {
|
||||
if (speed > 1) {
|
||||
speed--;
|
||||
game.informPlayers(this.getLogName() + "'s speed has decreased to " + speed);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean autoLoseGame() {
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue