diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-10 15:34:49 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-10 15:34:49 +0000 |
commit | 20115c5b2564762b0e9d7c929c38f34c757aac0f (patch) | |
tree | 8f7883c8b91d94a1a308d23f9a8403b9f1d63d5b /src/map/status.h | |
parent | 6d4c7182709b758782235857f22fd3632ba8df21 (diff) | |
download | hercules-20115c5b2564762b0e9d7c929c38f34c757aac0f.tar.gz hercules-20115c5b2564762b0e9d7c929c38f34c757aac0f.tar.bz2 hercules-20115c5b2564762b0e9d7c929c38f34c757aac0f.tar.xz hercules-20115c5b2564762b0e9d7c929c38f34c757aac0f.zip |
- Modified status_get_sc_def to handle both rate and tick reductions. This way it can take care of the fact that curse rate/duration reductions are not reduced by the same stats.
- Removed wrong defines status_get_sc_def_[mdef/vit/int/luk], they actually had a rather undefined behaviour.
- The pc_max_status_def mob_max_status_def configs are now set on a 1-100% scale instead of 1.00-100.00%
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10206 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.h')
-rw-r--r-- | src/map/status.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/map/status.h b/src/map/status.h index 4e14ebd45..1220db8f0 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -619,12 +619,7 @@ struct status_change *status_get_sc(struct block_list *bl); int status_isdead(struct block_list *bl); int status_isimmune(struct block_list *bl); -int status_get_sc_def(struct block_list *bl, int type); -#define status_get_sc_def_mdef(bl) (status_get_sc_def(bl, SP_MDEF1)) -#define status_get_sc_def_vit(bl) (status_get_sc_def(bl, SP_DEF2)) -#define status_get_sc_def_int(bl) (status_get_sc_def(bl, SP_MDEF2)) -#define status_get_sc_def_luk(bl) (status_get_sc_def(bl, SP_LUK)) - +int status_get_sc_def(struct block_list *bl, int type, int rate, int tick, int flag); //Short version, receives rate in 1->100 range, and does not uses a flag setting. #define sc_start(bl, type, rate, val1, tick) status_change_start(bl,type,100*(rate),val1,0,0,0,tick,0) #define sc_start2(bl, type, rate, val1, val2, tick) status_change_start(bl,type,100*(rate),val1,val2,0,0,tick,0) |