mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Added reminder text to Equip ability.
This commit is contained in:
parent
68ed1a4c91
commit
b463bc756f
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ public class EquipAbility extends ActivatedAbilityImpl<EquipAbility> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getRule() {
|
public String getRule() {
|
||||||
return "Equip " + costs.getText() + manaCosts.getText();
|
return new StringBuilder("Equip ").append(costs.getText()).append(manaCosts.getText()).append(" (").append(manaCosts.getText()).append(": <i>Attach to target creature you control. Equip only as a sorcery.)</i>").toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue