- 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()) {

View File

@@ -5,5 +5,5 @@ S:Mode$ Continuous | EffectZone$ Command | Affected$ Creature | SetColor$ Black
T:Mode$ PlanarDice | Result$ Chaos | TriggerZones$ Command | Execute$ RolledChaos | TriggerDescription$ Whenever you roll {C}, creatures you control get +1/+0 and gain first strike until end of turn.
SVar:RolledChaos:AB$ PumpAll | Cost$ 0 | ValidCards$ Creature.YouCtrl | NumAtt$ +1 | KW$ First Strike
SVar:Picture:http://www.wizards.com/global/images/magic/general/onakke_catacomb.jpg
SVar:AIRollPlanarDieParams:Mode$ Always | HasCreatureInPlay$ True
SVar:AIRollPlanarDieParams:Mode$ Always | HasCreatureInPlay$ True | RollInMain1$ True
Oracle:All creatures are black and have deathtouch.\nWhenever you roll {C}, creatures you control get +1/+0 and gain first strike until end of turn.

View File

@@ -244,7 +244,7 @@ public enum CardZoomer {
}
private int getInitialRotation() {
return (thisCard.isSplitCard() ? 90 : 0);
return (thisCard.isSplitCard() || thisCard.isPlane() || thisCard.isPhenomenon() ? 90 : 0);
}
private void setLayout() {