[1] | 1 | // ______ __ __ |
---|
| 2 | // /\ _ \/\ \__/\ \ |
---|
| 3 | // __\ \ \L\ \ \ ,_\ \ \___ __ ___ __ |
---|
| 4 | // /'__`\ \ __ \ \ \/\ \ _ `\ /'__`\/' _ `\ /'__`\ |
---|
| 5 | ///\ __/\ \ \/\ \ \ \_\ \ \ \ \/\ __//\ \/\ \/\ \L\.\_ |
---|
| 6 | //\ \____\\ \_\ \_\ \__\\ \_\ \_\ \____\ \_\ \_\ \__/.\_\ |
---|
| 7 | // \/____/ \/_/\/_/\/__/ \/_/\/_/\/____/\/_/\/_/\/__/\/_/ |
---|
| 8 | // _ _ _ _ _ _ _ _ _ _ _ _ _ |
---|
| 9 | // / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ |
---|
| 10 | //( e | n | g | l | i | s | h ) ( A | t | h | e | n | a ) |
---|
| 11 | // \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ |
---|
| 12 | // |
---|
| 13 | //-------------------------------------------------------------- |
---|
| 14 | // eAthena Battle Configuration File |
---|
| 15 | // Originally Translated by Peter Kieser <pfak@telus.net> |
---|
| 16 | // Made in to plainer English by Ancyker |
---|
| 17 | //-------------------------------------------------------------- |
---|
| 18 | // Note 1: Value is a config switch (on/off, yes/no or 1/0) |
---|
| 19 | // Note 2: Value is in percents (100 means 100%) |
---|
| 20 | // Note 3: Value is a bit field. If no description is given, |
---|
| 21 | // assume unit types (1: Pc, 2: Mob, 4: Pet, 8: Homun) |
---|
| 22 | //-------------------------------------------------------------- |
---|
| 23 | |
---|
| 24 | // Rate for catching pets (Note 2) |
---|
| 25 | pet_catch_rate: 100 |
---|
| 26 | |
---|
| 27 | // Can you name a pet more then once? (Note 1) |
---|
| 28 | pet_rename: no |
---|
| 29 | |
---|
| 30 | // The rate a pet will get friendly by feeding it. (Note 2) |
---|
| 31 | pet_friendly_rate: 100 |
---|
| 32 | |
---|
| 33 | // The rate at which a pet will become hungry. (Note 2) |
---|
| 34 | pet_hungry_delay_rate: 100 |
---|
| 35 | |
---|
| 36 | // If your pet is hungry by how much will the friendlyness decrease by. (Default is 5) |
---|
| 37 | // Note: The friendlyness is 0-1000 total, at 0 the pet runs away. |
---|
| 38 | pet_hungry_friendly_decrease: 5 |
---|
| 39 | |
---|
| 40 | // Does the pet need its equipment before it does its skill? (Note 1) |
---|
| 41 | pet_equip_required: yes |
---|
| 42 | |
---|
| 43 | // When the master attacks a monster, whether or not the pet will also attack. (Note 1) |
---|
| 44 | pet_attack_support: no |
---|
| 45 | |
---|
| 46 | // When the master receives damage from the monster, whether or not the pet attacks back. (Note 1) |
---|
| 47 | pet_damage_support: no |
---|
| 48 | |
---|
| 49 | // Minimum intimacy necessary for a pet to support their master. Default is 900 |
---|
| 50 | // (intimacy goes from 0 to 1000). At this minimum, support rate is 50% of pet's normal value. |
---|
| 51 | // At max (1000) support rate is 150%. |
---|
| 52 | pet_support_min_friendly: 900 |
---|
| 53 | |
---|
| 54 | // Whether or not the pet's will use skills. (Note 1) |
---|
| 55 | // Note: Offensive pet skills need at least pet_attack_support or |
---|
| 56 | // pet_damage_support to work (they trigger while the pet is attacking). |
---|
| 57 | pet_status_support: no |
---|
| 58 | |
---|
| 59 | // Rate at which a pet will support it's owner in battle. (Note 2) |
---|
| 60 | // Affects pet_attack_support & pet_damage_support. |
---|
| 61 | pet_support_rate: 100 |
---|
| 62 | |
---|
| 63 | // Does the pets owner receive exp from the pets damage? |
---|
| 64 | pet_attack_exp_to_master: no |
---|
| 65 | |
---|
| 66 | // The rate exp. is gained from the pet attacking monsters |
---|
| 67 | pet_attack_exp_rate: 100 |
---|
| 68 | |
---|
| 69 | // Pet leveling system. Use 0 to disable (default). |
---|
| 70 | // When enabled, a pet's level is a fixed % of the master's. (Note 2) |
---|
| 71 | // If 200%, pet has double level, if 50% pet has half your level, etc. |
---|
| 72 | pet_lv_rate: 0 |
---|
| 73 | |
---|
| 74 | // When pet leveling is enabled, what is the max stats for pets? |
---|
| 75 | pet_max_stats: 99 |
---|
| 76 | |
---|
| 77 | // When pet leveling is enabled, these are the imposed caps on |
---|
| 78 | // min/max damage. Note that these only cap atk1 and atk2, if you |
---|
| 79 | // enable pet_str, their max damage is then their base_atk + pet_max_atk2 |
---|
| 80 | pet_max_atk1: 500 |
---|
| 81 | pet_max_atk2: 1000 |
---|
| 82 | |
---|
| 83 | // Are pets disabled during Guild Wars? |
---|
| 84 | // If set to yes, pets are automatically returned to egg when entering castles during WoE times |
---|
| 85 | // and hatching is forbidden within as well. |
---|
| 86 | pet_disable_in_gvg: no |
---|