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

ru:: more start-game hints

This commit is contained in:
Zeno Rogue 2025-05-14 13:04:38 +02:00
parent 89877cb058
commit 08dccbdb08
3 changed files with 8 additions and 0 deletions

View File

@ -441,6 +441,7 @@ struct hint : public entity {
int state; int state;
xy size; xy size;
xy siz() override { return size; } xy siz() override { return size; }
hint() { state = 0; }
string glyph() override { return " "; } string glyph() override { return " "; }
color_t color() override { return 0; } color_t color() override { return 0; }
void act() override; void act() override;

View File

@ -358,6 +358,7 @@ void snake::attacked(int dmg) {
void hint::act() { void hint::act() {
bool cur = intersect(get_pixel_bbox(), m.get_pixel_bbox()); bool cur = intersect(get_pixel_bbox(), m.get_pixel_bbox());
if(gframeid < 300) cur = 0;
if(cur && !state) { if(cur && !state) {
addMessage(hint_text); addMessage(hint_text);
} }

View File

@ -114,6 +114,12 @@ HINT 306 292 12 12
Attack the door with your dagger to open it. Attack the door with your dagger to open it.
HINT 296 292 12 12 HINT 296 292 12 12
Collect your dagger and press [key:dagger]. Collect your dagger and press [key:dagger].
HINT 344 275 12 60
Press [key:move left] and [key:move right] to move.
HINT 205 286 12 12
Press [key:jump] to climb the ladder.
HINT 197 210 12 12
Press [key:fall] to drop down.
ITEM 382 287 ITEM 382 287
dagger dagger
You collect your trusty dagger from the drawer. You collect your trusty dagger from the drawer.