From fc2b32c113d41572aa5ad9156637c3888e4297df Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Wed, 22 Feb 2023 16:45:56 -0300 Subject: Max Weight trait was underpowered. Boost from 1kg to 2kg bonus. Now it should be roughly on-par with "all stats +1" trait. --- npc/functions/hub.txt | 2 +- npc/functions/rebirth.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index f8d15a089..f7d2dc9e7 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -1301,7 +1301,7 @@ function script HUB_PCBonus { bonus bSpeedAddRate, 5; } if (PCBONUS & PCB_WEIGHTBONUS) { - bonus bAddMaxWeight, 1000; + bonus bAddMaxWeight, 2000; } if (PCBONUS & PCB_EXPBONUS) { bonus2 bExpAddRace, RC_All, 10; diff --git a/npc/functions/rebirth.txt b/npc/functions/rebirth.txt index 0b486610c..00939887e 100644 --- a/npc/functions/rebirth.txt +++ b/npc/functions/rebirth.txt @@ -23,7 +23,7 @@ function script ChooseTrait { rif(#TUTORIAL_DONE && !(PCBONUS & PCB_ALLSTATS), l("All Stats +1")), PCB_ALLSTATS, rif(#TUTORIAL_DONE && !(PCBONUS & PCB_ASPDBONUS), l("Atk. Speed +10")), PCB_ASPDBONUS, rif(#TUTORIAL_DONE && !(PCBONUS & PCB_WSPDBONUS), l("Walk +5%")), PCB_WSPDBONUS, - rif(#TUTORIAL_DONE && !(PCBONUS & PCB_WEIGHTBONUS), l("Max Weight +1kg")), PCB_WEIGHTBONUS, + rif(#TUTORIAL_DONE && !(PCBONUS & PCB_WEIGHTBONUS), l("Max Weight +2kg")), PCB_WEIGHTBONUS, rif(#TUTORIAL_DONE && !(PCBONUS & PCB_EXPBONUS), l("EXP Gain +10%")), PCB_EXPBONUS, rif(#TUTORIAL_DONE && !(PCBONUS & PCB_NOKNOCKBACK), l("Knockback Immunity")), PCB_NOKNOCKBACK, rif(REBIRTH && !(PCBONUS & PCB_SPLASHMASTER), l("AoE (not stackable)")), PCB_SPLASHMASTER, -- cgit v1.2.3-60-g2f50