diff options
Diffstat (limited to 'npc/craft/options.txt')
-rw-r--r-- | npc/craft/options.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index 0d1c5481e..b71dcfbbd 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -272,9 +272,12 @@ function script csys_Generate { // Final tier (needs minimum lv 3) if (.@gid & CRGROUP_FINAL) { .@lvl=CRAFTSYS[CRGROUP_FINAL]; - if (.@lvl >= 3) { + if (.@lvl >= 1) { array_push(@csys_attr, IOPT_EXPGAIN); } + if (.@lvl >= 3) { + array_push(@csys_attr, IOPT_SPLASHDAMAGE); + } array_push(@csys_penalty, IOPT_WALKSPEED); // Update averages @@ -608,7 +611,7 @@ function script csysGUI_CRName { case CRGROUP_BOSSATK: return l("3 - Boss Techniques Bonus"); case CRGROUP_FINAL: - return l("4 - EXP Bonus"); + return l("4 - Ultimate Bonus"); default: return Exception("Invalid optname group: "+.@cr); } |