mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
fixed banding lands text
This commit is contained in:
parent
ef0d2151d8
commit
0f5d025699
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ public final class AdventurersGuildhouse extends CardImpl {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
|
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
|
||||||
|
|
||||||
// Green legendary creatures you control have "bands with other legendary creatures."
|
// Green legendary creatures you control have "bands with other legendary creatures."
|
||||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(new BandsWithOtherAbility(SuperType.LEGENDARY), Duration.WhileOnBattlefield, filter)));
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(new BandsWithOtherAbility(SuperType.LEGENDARY), Duration.WhileOnBattlefield, filter).withForceQuotes()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public AdventurersGuildhouse(final AdventurersGuildhouse card) {
|
public AdventurersGuildhouse(final AdventurersGuildhouse card) {
|
||||||
|
|
|
@ -69,7 +69,7 @@ public class BandsWithOtherAbility extends StaticAbility {
|
||||||
if (subtype != null) {
|
if (subtype != null) {
|
||||||
return sb.append(' ').append(subtype.getDescription()).append('s').toString();
|
return sb.append(' ').append(subtype.getDescription()).append('s').toString();
|
||||||
} else if (supertype != null) {
|
} else if (supertype != null) {
|
||||||
return sb.append(' ').append(supertype.toString()).append(" creatures").toString();
|
return sb.append(' ').append(supertype.toString().toLowerCase()).append(" creatures").toString();
|
||||||
} else if (bandingName != null) {
|
} else if (bandingName != null) {
|
||||||
return sb.append(" creatures named ").append(bandingName).toString();
|
return sb.append(" creatures named ").append(bandingName).toString();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue