diff options
author | Haru <haru@dotalux.com> | 2020-04-05 23:10:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-05 23:10:48 +0200 |
commit | c7ad2580c502dfed6d4fe34907758cd93ddfded3 (patch) | |
tree | 6fe8bab9014587acbc09bf0750afabee840c6199 /conf | |
parent | b996ad73974b282a15db217fcbac5f284be3fdd5 (diff) | |
parent | fb0e6a0172124df95ce32d6ad0b3b4cb85747f6d (diff) | |
download | hercules-c7ad2580c502dfed6d4fe34907758cd93ddfded3.tar.gz hercules-c7ad2580c502dfed6d4fe34907758cd93ddfded3.tar.bz2 hercules-c7ad2580c502dfed6d4fe34907758cd93ddfded3.tar.xz hercules-c7ad2580c502dfed6d4fe34907758cd93ddfded3.zip |
Merge pull request #2600 from Kenpachi2k13/issue#2434
Preparation for upcoming pet DB update.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/map/battle/pet.conf | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/conf/map/battle/pet.conf b/conf/map/battle/pet.conf index fa0057564..5797bb2a5 100644 --- a/conf/map/battle/pet.conf +++ b/conf/map/battle/pet.conf @@ -32,6 +32,14 @@ // assume unit types (1: Pc, 2: Mob, 4: Pet, 8: Homun, 16: Mercenary) //========================================================================= +// Use the offical formula to calculate the pet catch rate? (Note 1) +// Official formula: +// CatchRate = CaptureRate * (100 - 100 * MonsterHP / MonsterMaxHP) / 100 + CaptureRate +// Custum *Athena formula: +// CatchRate = (CaptureRate + (CharacterBaseLevel - MonsterLevel) * 30 + CharacterLuk * 20) * (200 - 100 * MonsterHP / MonsterMaxHP) / 100 +// (CaptureRate is defined in db/(pre-)re/pet_db.conf.) +pet_catch_rate_official_formula: true + // Rate for catching pets (Note 2) pet_catch_rate: 100 @@ -44,10 +52,6 @@ pet_friendly_rate: 100 // The rate at which a pet will become hungry. (Note 2) pet_hungry_delay_rate: 100 -// If your pet is hungry by how much will the friendlyness decrease by. (Default is 5) -// Note: The friendlyness is 0-1000 total, at 0 the pet runs away. -pet_hungry_friendly_decrease: 5 - // Does the pet need its equipment before it does its skill? (Note 1) pet_equip_required: true @@ -62,9 +66,6 @@ pet_damage_support: false // At max (1000) support rate is 150%. pet_support_min_friendly: 900 -// Same as above, but this is to use the pet_script field with official pet abilities. -pet_equip_min_friendly: 900 - // Whether or not the pet's will use skills. (Note 1) // Note: Offensive pet skills need at least pet_attack_support or // pet_damage_support to work (they trigger while the pet is attacking). |