diff options
Diffstat (limited to 'npc/003-9/recepcionist.txt')
-rw-r--r-- | npc/003-9/recepcionist.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/npc/003-9/recepcionist.txt b/npc/003-9/recepcionist.txt index eb940c106..e484e8f6f 100644 --- a/npc/003-9/recepcionist.txt +++ b/npc/003-9/recepcionist.txt @@ -22,10 +22,14 @@ mesn; mesq l("Good %s. Would you like to sleep here? It's only %d GP!", (is_night() ? l("evening") : l("day")), .@price); mesc l("Sleeping will fully replenish your health."); + mesc l("It'll also boost your %s for %s.", b(l("MAX HP")), l("15 minutes.")); + mesc l("Sleeping at night, the bonus will be stronger!"); next; if (askyesno() == ASK_YES && Zeny > .@price) { POL_PlayerMoney(.@price); percentheal 100, 100; + .@buff=(is_night() ? 15 : 10); + SC_Bonus(900000, INCMHPRATE, .@buff, .@buff); closeclientdialog; } close; |