diff options
author | Jedzkie <jedzkie13@rocketmail.com> | 2015-12-17 05:20:09 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-17 05:24:57 +0100 |
commit | 77ce094f70b01c74572d69cb98a224c7552ce5fe (patch) | |
tree | e8a3818a76dac901e0834251866d6383f25a7098 /db/re | |
parent | 614c6cab27d0141acd66d96a9c4b2ae9929603a7 (diff) | |
download | hercules-77ce094f70b01c74572d69cb98a224c7552ce5fe.tar.gz hercules-77ce094f70b01c74572d69cb98a224c7552ce5fe.tar.bz2 hercules-77ce094f70b01c74572d69cb98a224c7552ce5fe.tar.xz hercules-77ce094f70b01c74572d69cb98a224c7552ce5fe.zip |
Update the Effects of Cat's Ship Biscuit and Weevil Bug Worm.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'db/re')
-rw-r--r-- | db/re/item_db.conf | 46 |
1 files changed, 44 insertions, 2 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 7de03aedc..b6ae1e648 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -76060,7 +76060,22 @@ item_db: ( Type: 0 Buy: 0 Weight: 10 - Script: <" itemheal rand(70,110),0; "> + Script: <" + .@temp = rand(1,4); + if (.@temp == 1) { + heal -100, 0; + } else if (.@temp == 2) { + showscript "Huuph...! Yucky..! Wa, Water...!!"; + sc_start SC_STUN, 3000, 0, 50000, SCFLAG_NONE; + } else if (.@temp == 3) { + showscript "Yeeyuck...!! This is rotten!!"; + sc_start SC_POISON, 50000, 0; + } else { + specialeffect2 EF_HIT4; + showscript "Arrrrrgggg...!! Bu, Bu, Bugggggg!!!!!"; + getitem Rice_weevil_Bug, 1; + } + "> }, { Id: 11537 @@ -76069,7 +76084,34 @@ item_db: ( Type: 0 Buy: 0 Weight: 10 - Script: <" itemheal rand(100,150),0; "> + Script: <" + .@temp = rand(1,6); + if (.@temp == 1) { + specialeffect2 EF_POISONHIT; + showscript "Errrgg!!! This is so.. bitter....!!"; + heal 0,-50; + } else if (.@temp == 2) { + specialeffect2 EF_HEAL; + showscript "....Well at least this is good for my health though."; + percentheal 15,0; + } else if (.@temp == 3) { + specialeffect2 EF_POISONHIT; + showscript "Phewphew!! Arg.... Is this poisoned or what?!"; + heal 0,-100; + } else if (.@temp == 4) { + specialeffect2 EF_POISONHIT; + showscript "Whasdfhwkljhrtklwert....!!"; + heal 0,-200; + } else if (.@temp == 5) { + specialeffect2 EF_HEAL; + showscript "It's ok, no one sew me yet.."; + percentheal 10,0; + } else { + specialeffect2 EF_HEAL; + showscript "I really need something to eat... ?? Sorry, little buggy."; + percentheal 5,0; + } + "> }, { Id: 11538 |