mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-06-25 22:52:49 +00:00
ru:: more start-game hints
This commit is contained in:
parent
89877cb058
commit
08dccbdb08
@ -441,6 +441,7 @@ struct hint : public entity {
|
||||
int state;
|
||||
xy size;
|
||||
xy siz() override { return size; }
|
||||
hint() { state = 0; }
|
||||
string glyph() override { return " "; }
|
||||
color_t color() override { return 0; }
|
||||
void act() override;
|
||||
|
@ -358,6 +358,7 @@ void snake::attacked(int dmg) {
|
||||
|
||||
void hint::act() {
|
||||
bool cur = intersect(get_pixel_bbox(), m.get_pixel_bbox());
|
||||
if(gframeid < 300) cur = 0;
|
||||
if(cur && !state) {
|
||||
addMessage(hint_text);
|
||||
}
|
||||
|
@ -114,6 +114,12 @@ HINT 306 292 12 12
|
||||
Attack the door with your dagger to open it.
|
||||
HINT 296 292 12 12
|
||||
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
|
||||
dagger
|
||||
You collect your trusty dagger from the drawer.
|
||||
|
Loading…
x
Reference in New Issue
Block a user