1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-27 20:07:40 +00:00

ru:: NPCs

This commit is contained in:
Zeno Rogue
2025-04-27 01:23:59 +02:00
parent 0797e540d6
commit d93f0b0430
2 changed files with 15 additions and 3 deletions

View File

@@ -177,11 +177,14 @@ struct man : public entity {
extern man m;
struct sage : public entity {
struct npc : public entity {
string sglyph, name;
color_t col;
string text;
double sx() override { return 12; }
double sy() override { return 12; }
string glyph() override { return hallucinating ? "D" : "A"; }
color_t color() override { return hallucinating ? 0xFF0000FF : 0x90FF90FF; }
string glyph() override { return sglyph; }
color_t color() override { return col; }
};
struct item : public entity {