added Summoning Sickness property

This commit is contained in:
BetaSteward 2010-11-27 17:55:51 +00:00
parent e36d4e57e1
commit ecd0281d81
3 changed files with 12 additions and 1 deletions

View file

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