diff options
-rw-r--r-- | db/re/item_db.conf | 10 | ||||
-rw-r--r-- | npc/commands/event.txt | 5 |
2 files changed, 8 insertions, 7 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index afbffbec0..696789382 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -1471,7 +1471,7 @@ item_db: ( Type: "IT_HEALING" Buy: 50 Sell: 25 - Weight: 4 + Weight: 5 Refine: false ViewSprite: 572 Delay: 500 @@ -3108,9 +3108,9 @@ item_db: ( AegisName: "ClosedChristmasBox" Name: "Closed Christmas Box" Type: "IT_ETC" - Buy: 50 + Buy: 50000 Sell: 10 - Weight: 10 + Weight: 100 Refine: false ViewSprite: 754 }, @@ -3649,8 +3649,8 @@ item_db: ( Name: "Opened Christmas Box" Type: "IT_ETC" Buy: 10000 - Sell: 500 - Weight: 20 + Sell: 5 + Weight: 10 Refine: false ViewSprite: 805 }, diff --git a/npc/commands/event.txt b/npc/commands/event.txt index a41af175f..b8df7eb7d 100644 --- a/npc/commands/event.txt +++ b/npc/commands/event.txt @@ -16,7 +16,7 @@ function script DelItemFromEveryPlayer { // Christmas cannot be on GEM because it affects seasons system function script sChristmas { - // Add drops? + // Add Christmas drops addmonsterdrop(Moggun, XmasCake, 800); addmonsterdrop(AlphaMouboo, XmasCake, 920); addmonsterdrop(BlueSlime, XmasCake, 1000); @@ -35,8 +35,9 @@ function script sChristmas { addmonsterdrop(WaterFairy, GingerBreadMan, 1000); - // Change maps? + // Change maps for Christmas Season (Specially LoF maps) addmapmask "009-1", MASK_CHRISTMAS; + addmapmask "012-1", MASK_CHRISTMAS; addmapmask "017-2", MASK_CHRISTMAS; addmapmask "017-2-1", MASK_CHRISTMAS; addmapmask "017-3", MASK_CHRISTMAS; |