1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-16 11:08:05 +00:00

Orb of Luck improved

This commit is contained in:
Zeno Rogue
2021-05-22 01:40:55 +02:00
parent 5e33bd6db7
commit 49ba1a7fc4
3 changed files with 21 additions and 4 deletions

View File

@@ -458,6 +458,19 @@ EX string generateHelpForItem(eItem it) {
"and sub-lands."
);
if(it == itOrbLuck) {
help += XLAT("\n\nAdditionally, the probabilities of generating terrain features are subtly changed in the following lands:");
int cnt = 0;
for(int i=0; i<landtypes; i++) {
eLand land = eLand(i);
if(isLuckyLand(land)) {
help += XLAT(cnt ? ", %1" : " %1", land);
cnt++;
}
}
}
if(it == itBone)
help += XLAT(
"\n\nIn the Orb Strategy Mode, each 25 Necromancer's Totems "