diff options
-rw-r--r-- | db/re/mob_db.conf | 1 | ||||
-rw-r--r-- | npc/functions/seasons.txt | 26 |
2 files changed, 26 insertions, 1 deletions
diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index 37db358b0..b3066f347 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -7538,7 +7538,6 @@ mob_db: ( RedApple: 70 ChocolateBar: 58 CasinoCoins: 50 - MoubooSteak: 30 ChocolateMouboo: 20 } }, diff --git a/npc/functions/seasons.txt b/npc/functions/seasons.txt index df3c5ba40..106633959 100644 --- a/npc/functions/seasons.txt +++ b/npc/functions/seasons.txt @@ -208,13 +208,39 @@ OnAutumnEnd: end; OnWinterStart: + // Winterland Area Mobs + // Moggun AlphaMouboo BlueSlime SantaSlime IcedFluffy Yeti WaterFairy AzulSlime Fluffy + // RudolphSlime WhiteSlime AngryBat Wolvern WindFairy + + // Woodlands Area Mobs + // Tipiu Piousse Silkworm Squirrel Blub CobaltPlant MauvePlant GambogePlant AlizarinPlant + // Loghead Mouboo ForestMushroom SeaSlime Centaur Pinkie CloverField PoisonSpikyMushroom + // ChagashroomField PlushroomField ManaPiou Bluepar LivingPotato RedMushroom RedButterfly + // ManaBug TrainingDummy + + // LoF Area Mobs + // ChocolateSlime Lavern ShadowPlant CyanButterfly addmonsterdrop(Duck, GingerBreadMan, 360); addmonsterdrop(WaterFairy, GingerBreadMan, 1000); + + addmonsterdrop(AlphaMouboo, ReinbooWand, 3); + addmonsterdrop(BloodyMouboo,ReinbooWand, 2); + addmonsterdrop(Centaur, ReinbooWand, 2); + addmonsterdrop(Mouboo, ReinbooWand, 1); + addmonsterdrop(EasterMouboo,ReinbooWand, 1); + addmonsterdrop(MoubooSlime, ReinbooWand, 1); end; OnWinterEnd: delmonsterdrop(Duck, GingerBreadMan); delmonsterdrop(WaterFairy, GingerBreadMan); + + delmonsterdrop(AlphaMouboo, ReinbooWand); + delmonsterdrop(BloodyMouboo,ReinbooWand); + delmonsterdrop(Centaur, ReinbooWand); + delmonsterdrop(Mouboo, ReinbooWand); + delmonsterdrop(EasterMouboo,ReinbooWand); + delmonsterdrop(MoubooSlime, ReinbooWand); end; OnInit: |