Expanded skill_db's NK Flags#12
Open
cydh wants to merge 6 commits into
Open
Conversation
* These flags are split value of 0x08 - Skill ignores caster's % damage cards * NK_NO_CARDFIX_ATK_RANGE = 0x0001000, ///< Skill ignores caster's % range damage cards (bLongAtkRate) * NK_NO_CARDFIX_ATK_RACE = 0x0002000, ///< Skill ignores caster's % race damage cards (bAddRace, bMagicAddRace, bAddRace2) * NK_NO_CARDFIX_ATK_CLASS = 0x0004000, ///< Skill ignores caster's % class damage cards (bAddClass, bMagicAddClass) * NK_NO_CARDFIX_ATK_ELE = 0x0008000, ///< Skill ignores caster's % elemental damage cards (bAddEle, bMagicAddEle, bMagicAtkEle) (split of 0x10 - Skill ignores elemental adjustments) * NK_NO_CARDFIX_ATK_SIZE = 0x0010000, ///< Skill ignores caster's % size damage cards (bAddSize, bMagicAddSize) * NK_NO_CARDFIX_ATK_MOB = 0x0020000, ///< Skill ignores caster's % specific monster damage cards (bAddDamageClass, bAddMagicDamageClass) * NK_NO_CARDFIX_ATK_SKILL = 0x0040000, ///< Skill ignores caster's % skill-type & mastery mastery bonus? (Adv. Katar Mastery) * These flags are split value of 0x80 - Skill ignores target's def cards * NK_NO_CARDFIX_DEF_RANGE = 0x0080000, ///< Skill ignores target's range reduction cards (bNearAtkDef, bLongAtkDef) * NK_NO_CARDFIX_DEF_RACE = 0x0100000, ///< Skill ignores target's race reduction cards (bSubRace, bSubRace2) * NK_NO_CARDFIX_DEF_CLASS = 0x0200000, ///< Skill ignores target's class reduction cards (bSubClass) * NK_NO_CARDFIX_DEF_ELE = 0x0400000, ///< Skill ignores target's elemental reduction cards (bSubEle) (split of 0x10 - Skill ignores elemental adjustments) * NK_NO_CARDFIX_DEF_SIZE = 0x0800000, ///< Skill ignores target's size reduction cards (bSubSize, bSubDefEle) * NK_NO_CARDFIX_DEF_MOB = 0x1000000, ///< Skill ignores target's specific monster reduction cards (bAddDefMonster, bAddMDefMonster) * NK_NO_CARDFIX_DEF_SKILL = 0x2000000, ///< Skill ignores target's skill-type reduction cards (bMagicAtkDef, bMiscAtkDef) * NK_NO_CARDFIX_DEF_STATUS = 0x4000000, ///< Skill ignores target's status reduction bonus (SC_MDEF_RATE, SC_DEF_RATE)
* Thanks to @ecdarreola
|
Cydh, can you update this to latest rA changes for modifiers? thanks. |
# Conflicts: # db/pre-re/skill_db.txt # db/re/skill_db.txt # src/map/skill.cpp # src/map/skill.hpp
# Conflicts: # src/map/battle.cpp
|
Please update this 🥇 |
cydh
pushed a commit
that referenced
this pull request
Nov 29, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See Expanded skill_db's NK Flags: Added Race, Range, Class, Elemental, Size filter