diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-27 17:42:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-27 17:42:26 -0300 |
commit | de4808ebad7b8abd53f74e30caca760cec9e7bf6 (patch) | |
tree | 90ca4f98e63494609f12bd99009d529dce07fe43 /npc/025-1 | |
parent | bf68fda600acbbc3e632a3bef2d8fd3f70d71d2e (diff) | |
download | serverdata-de4808ebad7b8abd53f74e30caca760cec9e7bf6.tar.gz serverdata-de4808ebad7b8abd53f74e30caca760cec9e7bf6.tar.bz2 serverdata-de4808ebad7b8abd53f74e30caca760cec9e7bf6.tar.xz serverdata-de4808ebad7b8abd53f74e30caca760cec9e7bf6.zip |
There is now 5% chance of getting Whiskey Ale in the barrel (therefore, rare)
Only shows up for reborn characters, otherwise chance is null
Diffstat (limited to 'npc/025-1')
-rw-r--r-- | npc/025-1/rum.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/025-1/rum.txt b/npc/025-1/rum.txt index 935582eb3..4114fc63d 100644 --- a/npc/025-1/rum.txt +++ b/npc/025-1/rum.txt @@ -57,10 +57,10 @@ L_Main: mesc l("%s (rare)", getitemlink(WhiskeyAle)); mes ""; mesc l("Cost per %s glass:", l("twelve")); + mesc l("* @@/@@ @@", countitem(Beer), 5, getitemlink(Beer)); mesc l("* @@/@@ @@", countitem(ArtichokeHerb), 25, getitemlink(ArtichokeHerb)); mesc l("* @@/@@ @@", countitem(Fungus), 25, getitemlink(Fungus)); mesc l("* @@/@@ @@", countitem(RedApple), 25, getitemlink(RedApple)); - mesc l("* @@/@@ @@", countitem(Beer), 5, getitemlink(Beer)); mesc l("* @@/@@ @@", countitem(Milk), 25, getitemlink(Milk)); mesc l("* @@/@@ @@", countitem(ShadowHerb), 100, getitemlink(ShadowHerb)); mesc l("* @@ Water Bottle", 1); @@ -150,7 +150,7 @@ L_Main: if (askyesno() == ASK_YES) { if (rand(1000,10000) < rumbarrel_chance()) { mesc l("Success!"), 3; - if (false) + if (REBIRTH && !rand2(20)) getitem WhiskeyAle, FORTRESS_AMMO*.cupammo; else getitem CrazyRum, FORTRESS_AMMO*.cupammo; |