mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-09 15:39:55 +00:00
display charge count for all orbs, and activation costs for frog-like orbs
This commit is contained in:
parent
c6c040eead
commit
5d576c3344
4
help.cpp
4
help.cpp
@ -527,6 +527,10 @@ EX string generateHelpForItem(eItem it) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int oc = orbcharges(it); if(oc) help += XLAT("\n\nOrb charges gained: %1", its(oc));
|
||||
if(among(it, itOrbFrog, itOrbPhasing, itOrbDash))
|
||||
help += XLAT("\n\nActivation cost: %1 charges\n", its(5));
|
||||
|
||||
if(it == itOrb37 && (S7 != 7 || !BITRUNCATED))
|
||||
help += "\n\n" + other_geometry() + forbidden_unmarked();
|
||||
|
Loading…
Reference in New Issue
Block a user