diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-17 16:10:19 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-01-05 13:09:15 +0100 |
commit | 0c458a4976ea392a71ccfa8d86f2ebf86d03e1b4 (patch) | |
tree | bb90a52d78795f17f6268f815a77f66d77044b8f /src/map/battle.h | |
parent | 987b90508e7e6528eca2983416ac96cc1452ed61 (diff) | |
download | hercules-0c458a4976ea392a71ccfa8d86f2ebf86d03e1b4.tar.gz hercules-0c458a4976ea392a71ccfa8d86f2ebf86d03e1b4.tar.bz2 hercules-0c458a4976ea392a71ccfa8d86f2ebf86d03e1b4.tar.xz hercules-0c458a4976ea392a71ccfa8d86f2ebf86d03e1b4.zip |
Added Support for BodyStyle
Closes #974 as merged
Diffstat (limited to 'src/map/battle.h')
-rw-r--r-- | src/map/battle.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/map/battle.h b/src/map/battle.h index 37d78436c..49abdc730 100644 --- a/src/map/battle.h +++ b/src/map/battle.h @@ -43,6 +43,8 @@ struct status_data; #define MAX_HAIR_COLOR (battle->bc->max_hair_color) #define MIN_CLOTH_COLOR (battle->bc->min_cloth_color) #define MAX_CLOTH_COLOR (battle->bc->max_cloth_color) +#define MIN_BODY_STYLE (battle->bc->min_body_style) +#define MAX_BODY_STYLE (battle->bc->max_body_style) #define is_boss(bl) (status_get_mode(bl)&MD_BOSS) // Can refine later [Aru] @@ -529,9 +531,14 @@ struct Battle_Config { int show_monster_hp_bar; // [Frost] int fix_warp_hit_delay_abuse; - + + // Refine Def/Atk int costume_refine_def, shadow_refine_def; int shadow_refine_atk; + + // BodyStyle + int min_body_style, max_body_style; + int save_body_style; }; /* criteria for battle_config.idletime_critera */ |