1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-20 04:48:06 +00:00

slime destroyed by lava; winter picks up ice-encased items

This commit is contained in:
Zeno Rogue
2017-10-15 01:32:16 +02:00
parent d2d15cae7c
commit 2ec42f0469
2 changed files with 10 additions and 2 deletions

View File

@@ -219,6 +219,10 @@ string generateHelpForItem(eItem it) {
help += XLAT("\n\nThis Orb protects you from attacks, scents, and insulates you "
"from electricity. It does not let you go through deadly terrain, but "
"if you are attacked with fire, it lets you stay in place in it.");
if(it == itOrbWinter)
help += XLAT("\n\nThis Orb also allows you to collect items encased in ice.");
if(it == itOrbEmpathy) {
int cnt = 0;
for(int i=0; i<ittypes; i++) {