diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-20 13:10:35 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-20 13:10:35 -0300 |
commit | 227a6943c4a77ac59d281bf9131b7eb63f6891a3 (patch) | |
tree | 1f66a71631f2408727ce55054e2dd3c858986216 /npc/functions | |
parent | 03cbbf5e2ba23f9714baf42df157c0001599fb85 (diff) | |
download | serverdata-227a6943c4a77ac59d281bf9131b7eb63f6891a3.tar.gz serverdata-227a6943c4a77ac59d281bf9131b7eb63f6891a3.tar.bz2 serverdata-227a6943c4a77ac59d281bf9131b7eb63f6891a3.tar.xz serverdata-227a6943c4a77ac59d281bf9131b7eb63f6891a3.zip |
Add new Winter drop: Small Chocolate Bar
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/seasons.txt | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/npc/functions/seasons.txt b/npc/functions/seasons.txt index dc4112888..8743ee946 100644 --- a/npc/functions/seasons.txt +++ b/npc/functions/seasons.txt @@ -358,7 +358,7 @@ OnWinterStart: // LoF Area Mobs // ChocolateSlime Lavern ShadowPlant CyanButterfly - // Items: Snowflake CaramelCandy GingerBreadMan ChocolateBiscuit + // Items: Snowflake CaramelCandy GingerBreadMan SmallChocolateBar // Quest Requires All Of The Above addmonsterdrop(SantaSlime, ChocolateBiscuit, 100); @@ -398,6 +398,17 @@ OnWinterStart: addmonsterdrop(MauvePlant, Snowflake, 90); addmonsterdrop(AlizarinPlant, Snowflake, 90); + addmonsterdrop(AzulSlimeMother, SmallChocolateBar, 600); + addmonsterdrop(WhiteSlimeMother, SmallChocolateBar, 600); + addmonsterdrop(BeeHive, SmallChocolateBar, 500); + addmonsterdrop(Pollet, SmallChocolateBar, 320); + addmonsterdrop(MisterPrickel, SmallChocolateBar, 180); + addmonsterdrop(SnowFlower, SmallChocolateBar, 150); + addmonsterdrop(WhirlyBird, SmallChocolateBar, 120); + addmonsterdrop(ManaChest, SmallChocolateBar, 110); + addmonsterdrop(Maverick, SmallChocolateBar, 100); + addmonsterdrop(GreenDragon, SmallChocolateBar, 90); + addmonsterdrop(Yetifly, SmallChocolateBar, 60); addmonsterdrop(AlphaMouboo, ReinbooWand, 3); addmonsterdrop(BloodyMouboo, ReinbooWand, 2); @@ -411,6 +422,17 @@ OnWinterEnd: // Hasan's rewards can't be claimed anymore. Delete that from all players. DelQuestFromEveryPlayer(SQuest_Autumn); + delmonsterdrop(AzulSlimeMother, SmallChocolateBar); + delmonsterdrop(WhiteSlimeMother, SmallChocolateBar); + delmonsterdrop(BeeHive, SmallChocolateBar); + delmonsterdrop(Pollet, SmallChocolateBar); + delmonsterdrop(MisterPrickel, SmallChocolateBar); + delmonsterdrop(SnowFlower, SmallChocolateBar); + delmonsterdrop(WhirlyBird, SmallChocolateBar); + delmonsterdrop(ManaChest, SmallChocolateBar); + delmonsterdrop(Maverick, SmallChocolateBar); + delmonsterdrop(GreenDragon, SmallChocolateBar); + delmonsterdrop(Yetifly, SmallChocolateBar); delmonsterdrop(WaterFairy, GingerBreadMan); delmonsterdrop(RedMushroom, GingerBreadMan); delmonsterdrop(Duck, GingerBreadMan); |