diff options
Diffstat (limited to 'npc/craft')
-rw-r--r-- | npc/craft/options.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index c0ad5c8b7..db844d179 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -276,6 +276,9 @@ function script csys_Generate { array_push(@csys_attr, IOPT_EXPGAIN); } if (.@lvl >= 3) { + array_push(@csys_attr, IOPT_RICHNESS); + } + if (.@lvl >= 5) { array_push(@csys_attr, IOPT_SPLASHDAMAGE); } array_push(@csys_penalty, IOPT_WALKSPEED); @@ -345,6 +348,7 @@ function script csys_Multiplier { case IOPT_SPLASHDAMAGE: return 0; case IOPT_WALKSPEED: + case IOPT_RICHNESS: return 2; case VAR_AGIAMOUNT: case VAR_LUKAMOUNT: |