summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,