diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-12-20 15:35:58 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-12-20 15:35:58 -0300 |
commit | 56671cb8fa1f204038ceff29f7b4d0cfb749716d (patch) | |
tree | dff60154c445646410bf8c41df4c9e685a26f264 /npc | |
parent | 8afa4faebdb99e487100e24c387a96420981bf5f (diff) | |
download | serverdata-56671cb8fa1f204038ceff29f7b4d0cfb749716d.tar.gz serverdata-56671cb8fa1f204038ceff29f7b4d0cfb749716d.tar.bz2 serverdata-56671cb8fa1f204038ceff29f7b4d0cfb749716d.tar.xz serverdata-56671cb8fa1f204038ceff29f7b4d0cfb749716d.zip |
Increase how much alcohol is produced by the barrels
Diffstat (limited to 'npc')
-rw-r--r-- | npc/017-3/chagashroom.txt | 2 | ||||
-rw-r--r-- | npc/024-9/sake.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/017-3/chagashroom.txt b/npc/017-3/chagashroom.txt index e546aa27f..74e86a790 100644 --- a/npc/017-3/chagashroom.txt +++ b/npc/017-3/chagashroom.txt @@ -140,7 +140,7 @@ L_Main: if (askyesno() == ASK_YES) { if (rand(1000,10000) < redwine_chance()) { mesc l("Success!"), 3; - getitem RedPlushWine, REDWINE_AMMO*2; + getitem RedPlushWine, REDWINE_AMMO*3; } else { mesc l("The wine wasn't ready yet and you lost it..."), 1; } diff --git a/npc/024-9/sake.txt b/npc/024-9/sake.txt index c55de3f2b..6c30f2f62 100644 --- a/npc/024-9/sake.txt +++ b/npc/024-9/sake.txt @@ -150,7 +150,7 @@ L_Main: if (askyesno() == ASK_YES) { if (rand(1000,10000) < dwarvensake_chance()) { mesc l("Success!"), 3; - getitem DwarvenSake, DWARVEN_AMMO*2; + getitem DwarvenSake, DWARVEN_AMMO*3; } else { mesc l("The sake wasn't ready yet and you lost it..."), 1; } |