- Planes and phenomena will now be shown rotated 90 degrees in card zoomer mode.

- Updated the AI hints for Onakke Catacomb.
This commit is contained in:
Agetian
2014-01-25 06:04:50 +00:00
parent 80aa655164
commit 29e73367a6
3 changed files with 7 additions and 6 deletions

View File

@@ -4664,13 +4664,14 @@ public class Card extends GameEntity implements Comparable<Card> {
public final boolean isArtifact() { return this.typeContains("Artifact"); }
public final boolean isEquipment() { return this.typeContains("Equipment"); }
public final boolean isFortification() { return this.typeContains("Fortification"); }
public final boolean isScheme() { return this.typeContains("Scheme"); }
public final boolean isPlaneswalker() { return this.typeContains("Planeswalker"); }
public final boolean isEnchantment() { return this.typeContains("Enchantment"); }
public final boolean isAura() { return this.typeContains("Aura"); }
public final boolean isScheme() { return this.typeContains("Scheme"); }
public final boolean isPhenomenon() { return this.typeContains("Phenomenon"); }
public final boolean isPlane() { return this.typeContains("Plane"); }
private boolean typeContains(final String s) {
final Iterator<String> it = this.getType().iterator();
while (it.hasNext()) {