mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
Added Siren's Call.
This commit is contained in:
parent
ba1fb775b2
commit
59a5bbf765
7 changed files with 411 additions and 0 deletions
|
|
@ -79,6 +79,7 @@ public interface Permanent extends Card, Controllable {
|
|||
boolean canBeTargetedBy(MageObject source, UUID controllerId, Game game);
|
||||
boolean hasProtectionFrom(MageObject source, Game game);
|
||||
boolean cantBeEnchantedBy(MageObject source, Game game);
|
||||
boolean wasControlledFromStartOfControllerTurn();
|
||||
boolean hasSummoningSickness();
|
||||
int getDamage();
|
||||
int damage(int damage, UUID sourceId, Game game, boolean combat, boolean preventable);
|
||||
|
|
|
|||
|
|
@ -443,6 +443,11 @@ public abstract class PermanentImpl extends CardImpl implements Permanent {
|
|||
public void removeSummoningSickness() {
|
||||
this.controlledFromStartOfControllerTurn = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean wasControlledFromStartOfControllerTurn() {
|
||||
return this.controlledFromStartOfControllerTurn;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean hasSummoningSickness() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue