mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
- 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:
@@ -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()) {
|
||||
|
||||
Reference in New Issue
Block a user