mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
added Summoning Sickness property
This commit is contained in:
parent
e36d4e57e1
commit
ecd0281d81
3 changed files with 12 additions and 1 deletions
|
@ -46,6 +46,7 @@ public class PermanentView extends CardView {
|
|||
private boolean flipped;
|
||||
private boolean phasedIn;
|
||||
private boolean faceUp;
|
||||
private boolean summoningSickness;
|
||||
private int damage;
|
||||
private List<UUID> attachments;
|
||||
private List<CounterView> counters;
|
||||
|
@ -57,6 +58,7 @@ public class PermanentView extends CardView {
|
|||
this.flipped = permanent.isFlipped();
|
||||
this.phasedIn = permanent.isPhasedIn();
|
||||
this.faceUp = permanent.isFaceUp();
|
||||
this.summoningSickness = permanent.hasSummoningSickness();
|
||||
this.damage = permanent.getDamage();
|
||||
if (permanent.getAttachments().size() > 0) {
|
||||
attachments = new ArrayList<UUID>();
|
||||
|
@ -96,6 +98,10 @@ public class PermanentView extends CardView {
|
|||
return faceUp;
|
||||
}
|
||||
|
||||
public boolean hasSummoningSickness(){
|
||||
return summoningSickness;
|
||||
}
|
||||
|
||||
public List<UUID> getAttachments() {
|
||||
return attachments;
|
||||
}
|
||||
|
|
|
@ -68,6 +68,7 @@ public interface Permanent extends Card {
|
|||
public boolean changeControllerId(UUID controllerId, Game game);
|
||||
public boolean canBeTargetedBy(MageObject source);
|
||||
public boolean hasProtectionFrom(MageObject source);
|
||||
public boolean hasSummoningSickness();
|
||||
public int getDamage();
|
||||
public int damage(int damage, UUID sourceId, Game game, boolean preventable);
|
||||
public void removeAllDamage(Game game);
|
||||
|
|
|
@ -274,7 +274,6 @@ public abstract class PermanentImpl<T extends PermanentImpl<T>> extends CardImpl
|
|||
if (!phasedIn) {
|
||||
if (!replaceEvent(EventType.PHASE_IN, game)) {
|
||||
this.phasedIn = true;
|
||||
// addEffects(game);
|
||||
fireEvent(EventType.PHASED_IN, game);
|
||||
return true;
|
||||
}
|
||||
|
@ -311,6 +310,11 @@ public abstract class PermanentImpl<T extends PermanentImpl<T>> extends CardImpl
|
|||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean hasSummoningSickness() {
|
||||
return !this.controlledFromStartOfTurn;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isAttacking() {
|
||||
return attacking;
|
||||
|
|
Loading…
Reference in a new issue