diff options
author | Streusel <streusel@gravity.co.kr> | 2015-04-25 18:09:10 -0700 |
---|---|---|
committer | Streusel <streusel@gravity.co.kr> | 2015-04-25 18:09:10 -0700 |
commit | e4767041e80ee0b8ec567524f578ae49689b7938 (patch) | |
tree | 9f82457ae50d6a3b742a50e8c4295acb09d0d8f8 /db/pre-re | |
parent | 948be86481160443006dfe65b1bb35e1538c1bec (diff) | |
download | hercules-e4767041e80ee0b8ec567524f578ae49689b7938.tar.gz hercules-e4767041e80ee0b8ec567524f578ae49689b7938.tar.bz2 hercules-e4767041e80ee0b8ec567524f578ae49689b7938.tar.xz hercules-e4767041e80ee0b8ec567524f578ae49689b7938.zip |
Updated _figures using Class instead of BaseClass according to issue #504.
Special thanks to MordekaiserGod for bringing it up.
Diffstat (limited to 'db/pre-re')
-rw-r--r-- | db/pre-re/item_db.conf | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/db/pre-re/item_db.conf b/db/pre-re/item_db.conf index 65da8a524..65044a647 100644 --- a/db/pre-re/item_db.conf +++ b/db/pre-re/item_db.conf @@ -24548,7 +24548,7 @@ item_db: ( Refine: false Script: <" bonus bMaxHP,70; - if(Class==Job_Novice) bonus bMaxHP,30; + if(Class==Job_Novice || Class==Job_Novice_High || Class==Job_SuperNovice) bonus bMaxHP,30; "> }, { @@ -24561,7 +24561,7 @@ item_db: ( Refine: false Script: <" bonus bVit,1; - if(Class==Job_Swordman) bonus bDef,2; + if(BaseClass==Job_Swordman) bonus bDef,2; "> }, { @@ -24574,7 +24574,7 @@ item_db: ( Refine: false Script: <" bonus bInt,1; - if(Class==Job_Acolyte) bonus bMaxSP,50; + if(BaseClass==Job_Acolyte) bonus bMaxSP,50; "> }, { @@ -24587,7 +24587,7 @@ item_db: ( Refine: false Script: <" bonus bInt,1; - if(Class==Job_Mage) bonus bSPrecovRate,5; + if(BaseClass==Job_Mage) bonus bSPrecovRate,5; "> }, { @@ -24600,7 +24600,7 @@ item_db: ( Refine: false Script: <" bonus bDex,1; - if(Class==Job_Archer) bonus bBaseAtk,10; + if(BaseClass==Job_Archer) bonus bBaseAtk,10; "> }, { @@ -24613,7 +24613,7 @@ item_db: ( Refine: false Script: <" bonus bAgi,1; - if(Class==Job_Thief) bonus bAspdRate,3; + if(BaseClass==Job_Thief) bonus bAspdRate,3; "> }, { @@ -24626,7 +24626,7 @@ item_db: ( Refine: false Script: <" bonus bStr,1; - if(Class==Job_Merchant) bonus bCritical,5; + if(BaseClass==Job_Merchant) bonus bCritical,5; "> }, { |