summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2023-02-22 16:45:56 -0300
committerJesusaves <cpntb1@ymail.com>2023-02-22 16:45:56 -0300
commitfc2b32c113d41572aa5ad9156637c3888e4297df (patch)
tree5579c360642817847a512e321372381c569bf980
parent62ba44f000902efb2877dc12a5820c40c7fea27c (diff)
downloadserverdata-fc2b32c113d41572aa5ad9156637c3888e4297df.tar.gz
serverdata-fc2b32c113d41572aa5ad9156637c3888e4297df.tar.bz2
serverdata-fc2b32c113d41572aa5ad9156637c3888e4297df.tar.xz
serverdata-fc2b32c113d41572aa5ad9156637c3888e4297df.zip
Max Weight trait was underpowered. Boost from 1kg to 2kg bonus.
Now it should be roughly on-par with "all stats +1" trait.
-rw-r--r--npc/functions/hub.txt2
-rw-r--r--npc/functions/rebirth.txt2
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,