summaryrefslogtreecommitdiff
path: root/src/map/battle.h
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-04 19:30:15 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-04 19:30:15 +0000
commitbb78f61a194f92934784d108cb8e54e391c570aa (patch)
tree2e49643974eca093697308c944ff3ba0622922ea /src/map/battle.h
parent06387a85ce94281d1652ab4bc61c5b9c0971832a (diff)
downloadhercules-bb78f61a194f92934784d108cb8e54e391c570aa.tar.gz
hercules-bb78f61a194f92934784d108cb8e54e391c570aa.tar.bz2
hercules-bb78f61a194f92934784d108cb8e54e391c570aa.tar.xz
hercules-bb78f61a194f92934784d108cb8e54e391c570aa.zip
- Removed settings enemy_critical_rate, homun_critical_rate. Added settings enable_critical (defaults to specify only players), mob_critical_rate and critical_rate. The last applies to all non-mobs and non-players (battle/battle.conf)
- Removed settings mob_npc_warp, mob_warpportal. Replaced with setting mob_warp which specifies which types of warp can a mob step into (battle/monster.conf) - Updated status_calc_misc so that it also handles the BL_PC case, removed redundant info from status_calc_pc, and moving the SNovice Max Hp bonus to status_base_pc_maxhp git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8135 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.h')
-rw-r--r--src/map/battle.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/battle.h b/src/map/battle.h
index 5ff2cfc30..8dbad1ac0 100644
--- a/src/map/battle.h
+++ b/src/map/battle.h
@@ -95,8 +95,9 @@ int battle_config_switch(const char *str); // [Valaris]
extern struct Battle_Config {
unsigned short warp_point_debug;
- unsigned short enemy_critical_rate;
- unsigned short homun_critical_rate;
+ unsigned short enable_critical;
+ unsigned short mob_critical_rate;
+ unsigned short critical_rate;
unsigned short enable_baseatk;
unsigned short enable_perfect_flee;
unsigned short cast_rate,delay_rate,delay_dependon_dex;
@@ -269,8 +270,7 @@ extern struct Battle_Config {
unsigned short display_delay_skill_fail;
unsigned short display_snatcher_skill_fail;
unsigned short chat_warpportal;
- unsigned short mob_warpportal;
- unsigned short mob_npc_warp;
+ unsigned short mob_warp;
unsigned short dead_branch_active;
unsigned int vending_max_value;
unsigned short show_steal_in_same_party;