BonusEnum.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. /*
  2. * BonusEnum.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. VCMI_LIB_NAMESPACE_BEGIN
  12. class JsonNode;
  13. #define BONUS_LIST \
  14. BONUS_NAME(NONE) \
  15. BONUS_NAME(LEVEL_COUNTER) /* for commander artifacts*/ \
  16. BONUS_NAME(MOVEMENT) /*Subtype is 1 - land, 0 - sea*/ \
  17. BONUS_NAME(MORALE) \
  18. BONUS_NAME(LUCK) \
  19. BONUS_NAME(PRIMARY_SKILL) /*uses subtype to pick skill; additional info if set: 1 - only melee, 2 - only distance*/ \
  20. BONUS_NAME(SIGHT_RADIUS) \
  21. BONUS_NAME(MANA_REGENERATION) /*points per turn*/ \
  22. BONUS_NAME(FULL_MANA_REGENERATION) /*all mana points are replenished every day*/ \
  23. BONUS_NAME(NONEVIL_ALIGNMENT_MIX) /*good and neutral creatures can be mixed without morale penalty*/ \
  24. BONUS_NAME(SURRENDER_DISCOUNT) /*%*/ \
  25. BONUS_NAME(STACKS_SPEED) /*additional info - percent of speed bonus applied after direct bonuses; >0 - added, <0 - subtracted to this part*/ \
  26. BONUS_NAME(FLYING_MOVEMENT) /*value - penalty percentage*/ \
  27. BONUS_NAME(SPELL_DURATION) \
  28. BONUS_NAME(WATER_WALKING) /*value - penalty percentage*/ \
  29. BONUS_NAME(NEGATE_ALL_NATURAL_IMMUNITIES) \
  30. BONUS_NAME(STACK_HEALTH) \
  31. BONUS_NAME(GENERATE_RESOURCE) /*daily value, uses subtype (resource type)*/ \
  32. BONUS_NAME(CREATURE_GROWTH) /*for legion artifacts: value - week growth bonus, subtype - monster level if applicable*/ \
  33. BONUS_NAME(WHIRLPOOL_PROTECTION) /*hero won't lose army when teleporting through whirlpool*/ \
  34. BONUS_NAME(SPELL) /*hero knows spell, val - skill level (0 - 3), subtype - spell id*/ \
  35. BONUS_NAME(SPELLS_OF_LEVEL) /*hero knows all spells of given level, val - skill level; subtype - level*/ \
  36. BONUS_NAME(SPELLS_OF_SCHOOL) /*hero knows all spells of given school, subtype - spell school; 0 - air, 1 - fire, 2 - water, 3 - earth*/ \
  37. BONUS_NAME(BATTLE_NO_FLEEING) /*for shackles of war*/ \
  38. BONUS_NAME(MAGIC_SCHOOL_SKILL) /* //eg. for magic plains terrain, subtype: school of magic (0 - all, 1 - fire, 2 - air, 4 - water, 8 - earth), value - level*/ \
  39. BONUS_NAME(FREE_SHOOTING) /*stacks can shoot even if otherwise blocked (sharpshooter's bow effect)*/ \
  40. BONUS_NAME(OPENING_BATTLE_SPELL) /*casts a spell at expert level at beginning of battle, val - spell power, subtype - spell id*/ \
  41. BONUS_NAME(IMPROVED_NECROMANCY) /* raise more powerful creatures: subtype - creature type raised, addInfo - [required necromancy level, required stack level], val - necromancy level for this purpose */ \
  42. BONUS_NAME(CREATURE_GROWTH_PERCENT) /*increases growth of all units in all towns, val - percentage*/ \
  43. BONUS_NAME(FREE_SHIP_BOARDING) /*movement points preserved with ship boarding and landing*/ \
  44. BONUS_NAME(FLYING) \
  45. BONUS_NAME(SHOOTER) \
  46. BONUS_NAME(CHARGE_IMMUNITY) \
  47. BONUS_NAME(ADDITIONAL_ATTACK) /*val: number of additional attacks to perform*/ \
  48. BONUS_NAME(UNLIMITED_RETALIATIONS) \
  49. BONUS_NAME(NO_MELEE_PENALTY) \
  50. BONUS_NAME(JOUSTING) /*for champions*/ \
  51. BONUS_NAME(HATE) /*eg. angels hate devils, subtype - ID of hated creature, val - damage bonus percent */ \
  52. BONUS_NAME(KING) /* val - required slayer bonus val to affect */\
  53. BONUS_NAME(MAGIC_RESISTANCE) /*in % (value)*/ \
  54. BONUS_NAME(CHANGES_SPELL_COST_FOR_ALLY) /*in mana points (value) , eg. mage*/ \
  55. BONUS_NAME(CHANGES_SPELL_COST_FOR_ENEMY) /*in mana points (value) , eg. pegasus */ \
  56. BONUS_NAME(SPELL_AFTER_ATTACK) /* subtype - spell id, value - chance %, addInfo[0] - level, addInfo[1] -> [0 - all attacks, 1 - shot only, 2 - melee only], addInfo[2] -> spell layer for multiple SPELL_AFTER_ATTACK bonuses (default none [-1]) */ \
  57. BONUS_NAME(SPELL_BEFORE_ATTACK) /* subtype - spell id, value - chance %, addInfo[0] - level, addInfo[1] -> [0 - all attacks, 1 - shot only, 2 - melee only], addInfo[2] -> spell layer for multiple SPELL_BEFORE_ATTACK bonuses (default none [-1]) */ \
  58. BONUS_NAME(SPELL_RESISTANCE_AURA) /*eg. unicorns, value - resistance bonus in % for adjacent creatures*/ \
  59. BONUS_NAME(LEVEL_SPELL_IMMUNITY) /*creature is immune to all spell with level below or equal to value of this bonus */ \
  60. BONUS_NAME(BLOCK_MAGIC_ABOVE) /*blocks casting spells of the level > value */ \
  61. BONUS_NAME(BLOCK_ALL_MAGIC) /*blocks casting spells*/ \
  62. BONUS_NAME(TWO_HEX_ATTACK_BREATH) /*eg. dragons*/ \
  63. BONUS_NAME(SPELL_DAMAGE_REDUCTION) /*eg. golems; value - reduction in %, subtype - spell school; -1 - all, 0 - air, 1 - fire, 2 - water, 3 - earth*/ \
  64. BONUS_NAME(NO_WALL_PENALTY) \
  65. BONUS_NAME(NON_LIVING) /*eg. golems, cannot be rised or healed, only neutral morale */ \
  66. BONUS_NAME(RANDOM_SPELLCASTER) /*eg. master genie, val - level*/ \
  67. BONUS_NAME(BLOCKS_RETALIATION) /*eg. naga*/ \
  68. BONUS_NAME(SPELL_IMMUNITY) /*subid - spell id*/ \
  69. BONUS_NAME(MANA_CHANNELING) /*value in %, eg. familiar*/ \
  70. BONUS_NAME(SPELL_LIKE_ATTACK) /*subtype - spell, value - spell level; range is taken from spell, but damage from creature; eg. magog*/ \
  71. BONUS_NAME(THREE_HEADED_ATTACK) /*eg. cerberus*/ \
  72. BONUS_NAME(GENERAL_DAMAGE_PREMY) \
  73. BONUS_NAME(MIND_IMMUNITY) \
  74. BONUS_NAME(FIRE_SHIELD) \
  75. BONUS_NAME(UNDEAD) \
  76. BONUS_NAME(HP_REGENERATION) /*creature regenerates val HP every new round*/ \
  77. BONUS_NAME(MANA_DRAIN) /*value - spell points per turn*/ \
  78. BONUS_NAME(LIFE_DRAIN) \
  79. BONUS_NAME(DOUBLE_DAMAGE_CHANCE) /*value in %, eg. dread knight*/ \
  80. BONUS_NAME(RETURN_AFTER_STRIKE) \
  81. BONUS_NAME(SPELLCASTER) /*subtype - spell id, value - level of school, additional info - weighted chance. use SPECIFIC_SPELL_POWER, CREATURE_SPELL_POWER or CREATURE_ENCHANT_POWER for calculating the power*/ \
  82. BONUS_NAME(CATAPULT) \
  83. BONUS_NAME(ENEMY_DEFENCE_REDUCTION) /*in % (value) eg. behemots*/ \
  84. BONUS_NAME(GENERAL_DAMAGE_REDUCTION) /* shield / air shield effect, also armorer skill/petrify effect for subtype -1*/ \
  85. BONUS_NAME(GENERAL_ATTACK_REDUCTION) /*eg. while stoned or blinded - in %,// subtype not used, use ONLY_MELEE_FIGHT / DISTANCE_FIGHT*/ \
  86. BONUS_NAME(DEFENSIVE_STANCE) /* val - bonus to defense while defending */ \
  87. BONUS_NAME(ATTACKS_ALL_ADJACENT) /*eg. hydra*/ \
  88. BONUS_NAME(MORE_DAMAGE_FROM_SPELL) /*value - damage increase in %, subtype - spell id*/ \
  89. BONUS_NAME(FEAR) \
  90. BONUS_NAME(FEARLESS) \
  91. BONUS_NAME(NO_DISTANCE_PENALTY) \
  92. BONUS_NAME(ENCHANTER)/* for Enchanter spells, val - skill level, subtype - spell id, additionalInfo - cooldown */ \
  93. BONUS_NAME(HEALER) \
  94. BONUS_NAME(SIEGE_WEAPON) \
  95. BONUS_NAME(HYPNOTIZED) \
  96. BONUS_NAME(NO_RETALIATION) /*temporary bonus for basilisk, unicorn and scorpicore paralyze*/\
  97. BONUS_NAME(ADDITIONAL_RETALIATION) /*value - number of additional retaliations*/ \
  98. BONUS_NAME(MAGIC_MIRROR) /* value - chance of redirecting in %*/ \
  99. BONUS_NAME(ALWAYS_MINIMUM_DAMAGE) /*unit does its minimum damage from range; subtype: -1 - any attack, 0 - melee, 1 - ranged, value: additional damage penalty (it'll subtracted from dmg), additional info - multiplicative anti-bonus for dmg in % [eg 20 means that creature will inflict 80% of normal minimal dmg]*/ \
  100. BONUS_NAME(ALWAYS_MAXIMUM_DAMAGE) /*eg. bless effect, subtype: -1 - any attack, 0 - melee, 1 - ranged, value: additional damage, additional info - multiplicative bonus for dmg in %*/ \
  101. BONUS_NAME(ATTACKS_NEAREST_CREATURE) /*while in berserk*/ \
  102. BONUS_NAME(IN_FRENZY) /*value - level*/ \
  103. BONUS_NAME(SLAYER) /*value - level*/ \
  104. BONUS_NAME(FORGETFULL) /*forgetfulness spell effect, value - level*/ \
  105. BONUS_NAME(NOT_ACTIVE) /* subtype - spell ID (paralyze, blind, stone gaze) for graphical effect*/ \
  106. BONUS_NAME(NO_LUCK) /*eg. when fighting on cursed ground*/ \
  107. BONUS_NAME(NO_MORALE) /*eg. when fighting on cursed ground*/ \
  108. BONUS_NAME(DARKNESS) /*val = radius */ \
  109. BONUS_NAME(SPECIAL_SPELL_LEV) /*subtype = id, val = value per level in percent*/\
  110. BONUS_NAME(SPELL_DAMAGE) /*val = value, now works for sorcery, subtype - spell school; -1 - all, 0 - air, 1 - fire, 2 - water, 3 - earth*/\
  111. BONUS_NAME(SPECIFIC_SPELL_DAMAGE) /*subtype = id of spell, val = value*/\
  112. BONUS_NAME(SPECIAL_PECULIAR_ENCHANT) /*blesses and curses with id = val dependent on unit's level, subtype = 0 or 1 for Coronius*/\
  113. BONUS_NAME(SPECIAL_UPGRADE) /*subtype = base, additionalInfo = target */\
  114. BONUS_NAME(DRAGON_NATURE) \
  115. BONUS_NAME(CREATURE_DAMAGE)/*subtype 0 = both, 1 = min, 2 = max*/\
  116. BONUS_NAME(SHOTS)\
  117. BONUS_NAME(DEATH_STARE) /*subtype 0 - gorgon, 1 - commander*/\
  118. BONUS_NAME(POISON) /*val - max health penalty from poison possible*/\
  119. BONUS_NAME(BIND_EFFECT) /*doesn't do anything particular, works as a marker)*/\
  120. BONUS_NAME(ACID_BREATH) /*additional val damage per creature after attack, additional info - chance in percent*/\
  121. BONUS_NAME(RECEPTIVE) /*accepts friendly spells even with immunity*/\
  122. BONUS_NAME(CASTS) /*how many times creature can cast activated spell*/ \
  123. BONUS_NAME(SPECIFIC_SPELL_POWER) /* value used for Thunderbolt and Resurrection cast by units, subtype - spell id */\
  124. BONUS_NAME(CREATURE_SPELL_POWER) /* value per unit, divided by 100 (so faerie Dragons have 800)*/ \
  125. BONUS_NAME(CREATURE_ENCHANT_POWER) /* total duration of spells cast by creature */ \
  126. BONUS_NAME(ENCHANTED) /* permanently enchanted with spell subID of level = val, if val > 3 then spell is mass and has level of val-3*/ \
  127. BONUS_NAME(REBIRTH) /* val - percent of life restored, subtype = 0 - regular, 1 - at least one unit (sacred Phoenix) */\
  128. BONUS_NAME(DISGUISED) /* subtype - spell level */\
  129. BONUS_NAME(VISIONS) /* subtype - spell level */\
  130. BONUS_NAME(NO_TERRAIN_PENALTY) /* subtype - terrain type */\
  131. BONUS_NAME(SOUL_STEAL) /*val - number of units gained per enemy killed, subtype = 0 - gained units survive after battle, 1 - they do not*/ \
  132. BONUS_NAME(TRANSMUTATION) /*val - chance to trigger in %, subtype = 0 - resurrection based on HP, 1 - based on unit count, additional info - target creature ID (attacker default)*/\
  133. BONUS_NAME(SUMMON_GUARDIANS) /*val - amount in % of stack count, subtype = creature ID*/\
  134. BONUS_NAME(CATAPULT_EXTRA_SHOTS) /*val - power of catapult effect, requires CATAPULT bonus to work*/\
  135. BONUS_NAME(RANGED_RETALIATION) /*allows shooters to perform ranged retaliation*/\
  136. BONUS_NAME(BLOCKS_RANGED_RETALIATION) /*disallows ranged retaliation for shooter unit, BLOCKS_RETALIATION bonus is for melee retaliation only*/\
  137. BONUS_NAME(MANUAL_CONTROL) /* manually control warmachine with id = subtype, chance = val */ \
  138. BONUS_NAME(WIDE_BREATH) /* initial desigh: dragon breath affecting multiple nearby hexes */\
  139. BONUS_NAME(FIRST_STRIKE) /* first counterattack, then attack if possible */\
  140. BONUS_NAME(SYNERGY_TARGET) /* dummy skill for alternative upgrades mod */\
  141. BONUS_NAME(SHOOTS_ALL_ADJACENT) /* H4 Cyclops-like shoot (attacks all hexes neighboring with target) without spell-like mechanics */\
  142. BONUS_NAME(BLOCK_MAGIC_BELOW) /*blocks casting spells of the level < value */ \
  143. BONUS_NAME(DESTRUCTION) /*kills extra units after hit, subtype = 0 - kill percentage of units, 1 - kill amount, val = chance in percent to trigger, additional info - amount/percentage to kill*/ \
  144. BONUS_NAME(SPECIAL_CRYSTAL_GENERATION) /*crystal dragon crystal generation*/ \
  145. BONUS_NAME(NO_SPELLCAST_BY_DEFAULT) /*spellcast will not be default attack option for this creature*/ \
  146. BONUS_NAME(GARGOYLE) /* gargoyle is special than NON_LIVING, cannot be rised or healed */ \
  147. BONUS_NAME(SPECIAL_ADD_VALUE_ENCHANT) /*specialty spell like Aenin has, increased effect of spell, additionalInfo = value to add*/\
  148. BONUS_NAME(SPECIAL_FIXED_VALUE_ENCHANT) /*specialty spell like Melody has, constant spell effect (i.e. 3 luck), additionalInfo = value to fix.*/\
  149. BONUS_NAME(TOWN_MAGIC_WELL) /*one-time pseudo-bonus to implement Magic Well in the town*/\
  150. BONUS_NAME(LIMITED_SHOOTING_RANGE) /*limits range of shooting creatures, doesn't adjust any other mechanics (half vs full damage etc). val - range in hexes, additional info - optional new range for broken arrow mechanic */\
  151. BONUS_NAME(LEARN_BATTLE_SPELL_CHANCE) /*skill-agnostic eagle eye chance. subtype = 0 - from enemy, 1 - TODO: from entire battlefield*/\
  152. BONUS_NAME(LEARN_BATTLE_SPELL_LEVEL_LIMIT) /*skill-agnostic eagle eye limit, subtype - school (-1 for all), others TODO*/\
  153. BONUS_NAME(PERCENTAGE_DAMAGE_BOOST) /*skill-agnostic archery and offence, subtype is 0 for offence and 1 for archery*/\
  154. BONUS_NAME(LEARN_MEETING_SPELL_LIMIT) /*skill-agnostic scholar, subtype is -1 for all, TODO for others (> 0)*/\
  155. BONUS_NAME(ROUGH_TERRAIN_DISCOUNT) /*skill-agnostic pathfinding*/\
  156. BONUS_NAME(WANDERING_CREATURES_JOIN_BONUS) /*skill-agnostic diplomacy*/\
  157. BONUS_NAME(BEFORE_BATTLE_REPOSITION) /*skill-agnostic tactics, bonus for allowing tactics*/\
  158. BONUS_NAME(BEFORE_BATTLE_REPOSITION_BLOCK) /*skill-agnostic tactics, bonus for blocking opposite tactics. For now donble side tactics is TODO.*/\
  159. BONUS_NAME(HERO_EXPERIENCE_GAIN_PERCENT) /*skill-agnostic learning, and we can use it as a global effect also*/\
  160. BONUS_NAME(UNDEAD_RAISE_PERCENTAGE) /*Percentage of killed enemy creatures to be raised after battle as undead*/\
  161. BONUS_NAME(MANA_PER_KNOWLEDGE_PERCENTAGE) /*Percentage rate of translating hero knowledge to 10 mana, used to intelligence and global bonus*/\
  162. BONUS_NAME(HERO_GRANTS_ATTACKS) /*If hero can grant additional attacks to creature, value is number of attacks, subtype is creatureID*/\
  163. BONUS_NAME(BONUS_DAMAGE_PERCENTAGE) /*If hero can grant conditional damage to creature, value is percentage, subtype is creatureID*/\
  164. BONUS_NAME(BONUS_DAMAGE_CHANCE) /*If hero can grant additional damage to creature, value is chance, subtype is creatureID*/\
  165. BONUS_NAME(MAX_LEARNABLE_SPELL_LEVEL) /*This can work as wisdom before. val = max learnable spell level*/\
  166. BONUS_NAME(SPELL_SCHOOL_IMMUNITY) /*This bonus will work as spell school immunity for all spells, subtype - spell school: 0 - air, 1 - fire, 2 - water, 3 - earth. Any is not handled for reducing overlap from LEVEL_SPELL_IMMUNITY*/\
  167. BONUS_NAME(NEGATIVE_EFFECTS_IMMUNITY) /*This bonus will work as spell school immunity for negative effects from spells of school, subtype - spell school: -1 - any, 0 - air, 1 - fire, 2 - water, 3 - earth*/\
  168. BONUS_NAME(TERRAIN_NATIVE) \
  169. BONUS_NAME(UNLIMITED_MOVEMENT) /*cheat bonus*/ \
  170. BONUS_NAME(MAX_MORALE) /*cheat bonus*/ \
  171. BONUS_NAME(MAX_LUCK) /*cheat bonus*/ \
  172. BONUS_NAME(FEROCITY) /*extra attacks, only if at least some creatures killed while attacking target unit, val = amount of additional attacks, additional info = amount of creatures killed to trigger (default 1)*/ \
  173. BONUS_NAME(ENEMY_ATTACK_REDUCTION) /*in % (value) eg. Nix (HotA)*/ \
  174. BONUS_NAME(REVENGE) /*additional damage based on how many units in stack died - formula: sqrt((number of creatures at battle start + 1) * creature health) / (total health now + 1 creature health) - 1) * 100% */ \
  175. BONUS_NAME(RESOURCES_CONSTANT_BOOST) /*Bonus that does not account for propagation and gives extra resources per day. val - resource amount, subtype - resource type*/ \
  176. BONUS_NAME(RESOURCES_TOWN_MULTIPLYING_BOOST) /*Bonus that does not account for propagation and gives extra resources per day with amount multiplied by number of owned towns. val - base resource amount to be multiplied times number of owned towns, subtype - resource type*/ \
  177. /* end of list */
  178. #define BONUS_SOURCE_LIST \
  179. BONUS_SOURCE(ARTIFACT)\
  180. BONUS_SOURCE(ARTIFACT_INSTANCE)\
  181. BONUS_SOURCE(OBJECT_TYPE)\
  182. BONUS_SOURCE(OBJECT_INSTANCE)\
  183. BONUS_SOURCE(CREATURE_ABILITY)\
  184. BONUS_SOURCE(TERRAIN_NATIVE)\
  185. BONUS_SOURCE(TERRAIN_OVERLAY)\
  186. BONUS_SOURCE(SPELL_EFFECT)\
  187. BONUS_SOURCE(TOWN_STRUCTURE)\
  188. BONUS_SOURCE(HERO_BASE_SKILL)\
  189. BONUS_SOURCE(SECONDARY_SKILL)\
  190. BONUS_SOURCE(HERO_SPECIAL)\
  191. BONUS_SOURCE(ARMY)\
  192. BONUS_SOURCE(CAMPAIGN_BONUS)\
  193. BONUS_SOURCE(STACK_EXPERIENCE)\
  194. BONUS_SOURCE(COMMANDER) /*TODO: consider using simply STACK_INSTANCE */\
  195. BONUS_SOURCE(GLOBAL) /*used for base bonuses which all heroes or all stacks should have*/\
  196. BONUS_SOURCE(OTHER) /*used for defensive stance and default value of spell level limit*/
  197. #define BONUS_VALUE_LIST \
  198. BONUS_VALUE(ADDITIVE_VALUE)\
  199. BONUS_VALUE(BASE_NUMBER)\
  200. BONUS_VALUE(PERCENT_TO_ALL)\
  201. BONUS_VALUE(PERCENT_TO_BASE)\
  202. BONUS_VALUE(PERCENT_TO_SOURCE) /*Adds value only to bonuses with same source*/\
  203. BONUS_VALUE(PERCENT_TO_TARGET_TYPE) /*Adds value only to bonuses with SourceType target*/\
  204. BONUS_VALUE(INDEPENDENT_MAX) /*used for SPELL bonus */\
  205. BONUS_VALUE(INDEPENDENT_MIN) //used for SECONDARY_SKILL_PREMY bonus
  206. enum class BonusType : uint8_t
  207. {
  208. #define BONUS_NAME(x) x,
  209. BONUS_LIST
  210. #undef BONUS_NAME
  211. };
  212. namespace BonusDuration //when bonus is automatically removed
  213. {
  214. // We use uint16_t directly because std::bitset<11> eats whole 8 byte word.
  215. using Type = uint16_t;
  216. constexpr size_t Size = 11;
  217. enum BonusDuration : Type {
  218. PERMANENT = 1 << 0,
  219. ONE_BATTLE = 1 << 1, //at the end of battle
  220. ONE_DAY = 1 << 2, //at the end of day
  221. ONE_WEEK = 1 << 3, //at the end of week (bonus lasts till the end of week, thats NOT 7 days
  222. N_TURNS = 1 << 4, //used during battles, after battle bonus is always removed
  223. N_DAYS = 1 << 5,
  224. UNTIL_BEING_ATTACKED = 1 << 6, /*removed after attack and counterattacks are performed*/
  225. UNTIL_ATTACK = 1 << 7, /*removed after attack and counterattacks are performed*/
  226. STACK_GETS_TURN = 1 << 8, /*removed when stack gets its turn - used for defensive stance*/
  227. COMMANDER_KILLED = 1 << 9,
  228. UNTIL_OWN_ATTACK = 1 << 10 /*removed after attack is performed (not counterattack)*/,
  229. };
  230. extern JsonNode toJson(const Type & duration);
  231. };
  232. enum class BonusSource : uint8_t
  233. {
  234. #define BONUS_SOURCE(x) x,
  235. BONUS_SOURCE_LIST
  236. #undef BONUS_SOURCE
  237. NUM_BONUS_SOURCE /*This is a dummy value, which will be always last*/
  238. };
  239. enum class BonusLimitEffect : uint8_t
  240. {
  241. NO_LIMIT = 0,
  242. ONLY_DISTANCE_FIGHT=1, ONLY_MELEE_FIGHT, //used to mark bonuses for attack/defense primary skills from spells like Precision (distance only)
  243. };
  244. enum class BonusValueType : uint8_t
  245. {
  246. #define BONUS_VALUE(x) x,
  247. BONUS_VALUE_LIST
  248. #undef BONUS_VALUE
  249. };
  250. extern DLL_LINKAGE const std::map<std::string, BonusType> bonusNameMap;
  251. extern DLL_LINKAGE const std::map<std::string, BonusValueType> bonusValueMap;
  252. extern DLL_LINKAGE const std::map<std::string, BonusSource> bonusSourceMap;
  253. extern DLL_LINKAGE const std::map<std::string, BonusDuration::Type> bonusDurationMap;
  254. extern DLL_LINKAGE const std::map<std::string, BonusLimitEffect> bonusLimitEffect;
  255. VCMI_LIB_NAMESPACE_END