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:
parent
89877cb058
commit
08dccbdb08
@ -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;
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
@ -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.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user