summaryrefslogtreecommitdiff
path: root/npc/craft/options.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-06-07 02:07:23 -0300
committerJesusaves <cpntb1@ymail.com>2019-06-07 02:07:23 -0300
commit0ebb73fc54e6865886943918e4df446567f428b3 (patch)
tree954191adb05e9616a422b450df8ed8d0d1ac657d /npc/craft/options.txt
parented205aa7188f5947b98445cf561a15aa05726062 (diff)
downloadserverdata-0ebb73fc54e6865886943918e4df446567f428b3.tar.gz
serverdata-0ebb73fc54e6865886943918e4df446567f428b3.tar.bz2
serverdata-0ebb73fc54e6865886943918e4df446567f428b3.tar.xz
serverdata-0ebb73fc54e6865886943918e4df446567f428b3.zip
Add limits to walk speed bonus
Diffstat (limited to 'npc/craft/options.txt')
-rw-r--r--npc/craft/options.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt
index 61e7a645b..0118180ab 100644
--- a/npc/craft/options.txt
+++ b/npc/craft/options.txt
@@ -343,6 +343,8 @@ function script csys_Multiplier {
switch (.@sk) {
case IOPT_SPLASHDAMAGE:
return 0;
+ case IOPT_WALKSPEED:
+ return 2;
case VAR_AGIAMOUNT:
case VAR_LUKAMOUNT:
case VAR_DEXAMOUNT:
@@ -786,12 +788,16 @@ function script csysGUI_OptLearnMenu {
// You can't raise if max level (200) is exceeded
// At current max level (200) you'll have at most the following bonuses:
// 1 Splash Radius, 100% EXP, 500 HP, 300% SC RESIST, 80 AGI, 200 ATK, 100 STR
+// Walk Speed: 40% faster
// At ONE QUARTER max level (50) you'll have at most the following bonuses:
// 1 Splash Radius, 25% EXP, 125 HP, 75% SC RESIST, 20 AGI, 50 ATK, 25 STR
+// Walk Speed: 10% faster
// At level 10 it will be:
// 1 Splash Radius, 5% EXP, 25 HP, 15% SC RESIST, 4 AGI, 10 ATK, 5 STR
+// Walk Speed: 2% faster
// At level 1 it will be:
// 1 Splash Radius, 1% EXP, 2~3 HP, 1~2% SC RESIST, 1 AGI, 1 ATK, 1 STR
+// Walk Speed: 1% faster
function script csysGUI_RaiseOpt {
.@sk=getarg(0);
.@pc=csysGUI_OptPrice(.@sk);