summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-02-25 11:18:02 -0300
committerJesusaves <cpntb1@ymail.com>2020-02-25 11:18:02 -0300
commit6c9e181052d78d755cfd6e3315891bc7cff30c3d (patch)
tree8809b2f21e189a5aa5e53db83722c8955e605322
parent676f44577c6a7651a5d0741d9bf679bfe6139a2f (diff)
downloadserverdata-6c9e181052d78d755cfd6e3315891bc7cff30c3d.tar.gz
serverdata-6c9e181052d78d755cfd6e3315891bc7cff30c3d.tar.bz2
serverdata-6c9e181052d78d755cfd6e3315891bc7cff30c3d.tar.xz
serverdata-6c9e181052d78d755cfd6e3315891bc7cff30c3d.zip
Sleeping at Inns will give you a BONUS %%o
-rw-r--r--npc/003-9/recepcionist.txt4
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;