diff options
Diffstat (limited to 'src/resources/iteminfo.h')
-rw-r--r-- | src/resources/iteminfo.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/resources/iteminfo.h b/src/resources/iteminfo.h index 644b80154..ba429341d 100644 --- a/src/resources/iteminfo.h +++ b/src/resources/iteminfo.h @@ -194,6 +194,12 @@ class ItemInfo final int getCriticalHitEffectId() const { return mCriticalHitEffectId; } + void setMissEffectId(const int s) + { mMissEffectId = s; } + + int getMissEffectId() const + { return mMissEffectId; } + const std::string &getAttackAction() const { return mAttackAction; } @@ -306,6 +312,7 @@ class ItemInfo final std::string mColorList; int mHitEffectId; int mCriticalHitEffectId; + int mMissEffectId; int maxFloorOffset; }; |