You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
590 B
21 lines
590 B
# /*
|
|
# * UnitRemoveBuffsExBJ
|
|
# *
|
|
# * By actboy168
|
|
# *
|
|
# */
|
|
#
|
|
#ifndef INCLUDE_BJ_OPTIMIZATION_UNIT_REMOVE_BUFFS_EX_H
|
|
#define INCLUDE_BJ_OPTIMIZATION_UNIT_REMOVE_BUFFS_EX_H
|
|
#
|
|
# include <YDTrigger/BJOptimization/detail/Unit/UnitBuffsCheck.h>
|
|
#
|
|
# define UnitRemoveBuffsExBJ(polarity, resist, unit, bTLife, bAura) \
|
|
UnitRemoveBuffsEx(unit, \
|
|
UNIT_BUFFS_EX_POS_CHECK(polarity), \
|
|
UNIT_BUFFS_EX_NEG_CHECK(polarity), \
|
|
UNIT_BUFFS_EX_MAG_CHECK(resist), \
|
|
UNIT_BUFFS_EX_PHY_CHECK(resist), \
|
|
bTLife, bAura, false)
|
|
#
|
|
#endif
|
|
|