diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-02-19 19:18:19 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-02-19 19:18:19 -0300 |
commit | 39c9cc7755bb063d61a6bc802beb13f5814ae1cf (patch) | |
tree | 77b3a2eadee0f9a95b9e7db1f60acd766e0d9604 | |
parent | da2580afdbde821bae55de506b12568650d472fb (diff) | |
download | serverdata-39c9cc7755bb063d61a6bc802beb13f5814ae1cf.tar.gz serverdata-39c9cc7755bb063d61a6bc802beb13f5814ae1cf.tar.bz2 serverdata-39c9cc7755bb063d61a6bc802beb13f5814ae1cf.tar.xz serverdata-39c9cc7755bb063d61a6bc802beb13f5814ae1cf.zip |
Nerf Tonori Delight by half and reduce the variation on Maxime.
Chef Hat now produces similar results to summer season.
-rw-r--r-- | db/re/item_db.conf | 7 | ||||
-rw-r--r-- | npc/003-0-1/maxime.txt | 5 |
2 files changed, 6 insertions, 6 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 6886801fb..da5042fb1 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -1347,12 +1347,11 @@ item_db: ( Script: <" @type = 3; @rarity=2; - .@val=rand(32,96); + .@val=rand(16,48); // Re-roll - if (.@val > 64) - .@val=rand(32,96); + if (.@val > 32) + .@val=rand(16,48); itemheal 0, .@val; - callfunc("SC_Bonus", 10, SC_ATTHASTE_POTION1, 3); doevent "rand_sc_heal::OnUse"; "> }, diff --git a/npc/003-0-1/maxime.txt b/npc/003-0-1/maxime.txt index ed3204b9e..34eb1490c 100644 --- a/npc/003-0-1/maxime.txt +++ b/npc/003-0-1/maxime.txt @@ -71,6 +71,7 @@ function MaximeOven { // 4~7 normaly, 5~10 during Summer // Xanthem Patch: +20% craft and -20% effect // New values: 5~9 normal or 6~12 during Summer + // After MP Nerf: 7~10 normal or 8~12 during Summer (-50% effect) inventoryplace TonoriDelight, 12; delitem MaggotSlime, 12; delitem Plushroom, 8; @@ -78,9 +79,9 @@ function MaximeOven { delitem ScorpionStinger, 3; delitem CactusDrink, 2; delitem RoastedMaggot, 1; - getitem TonoriDelight, rand2(5,9); + getitem TonoriDelight, rand2(7,10); if (season() == SUMMER) { - getitem TonoriDelight, rand2(1,3); + getitem TonoriDelight, any(1, 2, 2); mesc l("During summer, more Tonori Delight can be produced."); } else if (getequipid(EQI_HEAD_TOP) == ChefHat) { getitem TonoriDelight, any(1, 1, 2); |