mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- Fixed Lingering Mirage, now when cast the choose dialog will display the text for both the cycling ability and the enchant land ability.
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
Name:Lingering Mirage
|
||||
ManaCost:1 U
|
||||
Types:Enchantment Aura
|
||||
Text:Enchanted land is an Island.
|
||||
Text:no text
|
||||
#
|
||||
# Need to set the spell description in CardFactory_Auras for Lingering Mirage since it has cycling
|
||||
#
|
||||
K:Enchant land
|
||||
K:Cycling:2
|
||||
SVar:Rarity:Common
|
||||
|
||||
@@ -583,6 +583,11 @@ class CardFactory_Auras {
|
||||
card.clearSpellAbility();
|
||||
card.addSpellAbility(spell);
|
||||
|
||||
// Need to set the spell description for Lingering Mirage since it has cycling ability.
|
||||
if (card.getName().equals("Lingering Mirage")) {
|
||||
spell.setDescription("Enchanted land is an Island.");
|
||||
}
|
||||
|
||||
Command onEnchant = new Command() {
|
||||
|
||||
private static final long serialVersionUID = 3528675112863241126L;
|
||||
|
||||
Reference in New Issue
Block a user