summaryrefslogtreecommitdiff
path: root/db/re/item_db.conf
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-12-14 22:15:40 -0200
committerJesusaves <cpntb1@ymail.com>2018-12-14 22:15:40 -0200
commit9b4df1b7ef28781bcf9a601077986e8f24ced32b (patch)
treecb95ed2b7aade994bb28a874f155f3bf40c6e9ba /db/re/item_db.conf
parentbb18a37c27ceec2f3b66b8b8a0619322c08a38d7 (diff)
downloadserverdata-9b4df1b7ef28781bcf9a601077986e8f24ced32b.tar.gz
serverdata-9b4df1b7ef28781bcf9a601077986e8f24ced32b.tar.bz2
serverdata-9b4df1b7ef28781bcf9a601077986e8f24ced32b.tar.xz
serverdata-9b4df1b7ef28781bcf9a601077986e8f24ced32b.zip
Christmas is coming: Handle Christmas drops and items
Diffstat (limited to 'db/re/item_db.conf')
-rw-r--r--db/re/item_db.conf16
1 files changed, 12 insertions, 4 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf
index e9418777c..afbffbec0 100644
--- a/db/re/item_db.conf
+++ b/db/re/item_db.conf
@@ -1477,8 +1477,12 @@ item_db: (
Delay: 500
UseEffect: "EFFECT_HEAL"
Script: <"
- @min = 4;
+ @min = 100;
@max = 400;
+ if ($EVENT$ == "Christmas") {
+ @min=300;
+ @max=1200;
+ }
@delay = 3;
@type = 1;
doevent "rand_sc_heal::OnUse";
@@ -1497,9 +1501,13 @@ item_db: (
Delay: 500
UseEffect: "EFFECT_HEAL"
Script: <"
- @min = 4;
- @max = 400;
- @delay = 3;
+ @min = 80;
+ @max = 350;
+ if ($EVENT$ == "Christmas") {
+ @min=240;
+ @max=1050;
+ }
+ @delay = 4;
@type = 1;
doevent "rand_sc_heal::OnUse";
">