diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-12 22:00:07 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-12 22:00:07 -0300 |
commit | 9ef5e52d30bc8185b71bc751669193b1a54b5251 (patch) | |
tree | 8a094a8efa6994454b3b8cca5757c034fb2dd254 | |
parent | a1f09eb614fc170164fa23b81985274d4b0ab7b6 (diff) | |
download | serverdata-9ef5e52d30bc8185b71bc751669193b1a54b5251.tar.gz serverdata-9ef5e52d30bc8185b71bc751669193b1a54b5251.tar.bz2 serverdata-9ef5e52d30bc8185b71bc751669193b1a54b5251.tar.xz serverdata-9ef5e52d30bc8185b71bc751669193b1a54b5251.zip |
[skip ci] Correct way to do so
-rw-r--r-- | db/re/mob_db.conf | 1 | ||||
-rw-r--r-- | npc/functions/seasons.txt | 5 |
2 files changed, 3 insertions, 3 deletions
diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index 6bdb1dddb..90f2a97da 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -9159,7 +9159,6 @@ mob_db: ( AttackMotion: 472 DamageMotion: 180 Drops: { - LoveLetter: 10000 AtroposMixture: 200 SilverMirror: 40 MysteriousBottle: 30 diff --git a/npc/functions/seasons.txt b/npc/functions/seasons.txt index 48a5de4f5..980fcaafd 100644 --- a/npc/functions/seasons.txt +++ b/npc/functions/seasons.txt @@ -113,8 +113,9 @@ function script sChristmas { // Valentine Day is handled by @event, this is only for @reloadmobdb function script sValentine { // Add Valentine drops - addmonsterdrop(RedMushroom, LoveLetter, 8); - addmonsterdrop(ChocolateSlime, LoveLetter, 4); + addmonsterdrop(WhirlyBird, LoveLetter, 10000); + addmonsterdrop(RedMushroom, LoveLetter, 8); + addmonsterdrop(ChocolateSlime, LoveLetter, 4); return; } |