diff options
author | Haru <haru@dotalux.com> | 2020-02-09 23:10:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-09 23:10:59 +0100 |
commit | 1a0619fcedf573c7004489470f169e112fa1bb62 (patch) | |
tree | 47b502114376a2a8cd59604731703b93504fb4e5 /db | |
parent | 66b624165ba2e7c868b38081230a61691be447df (diff) | |
parent | 7510db3f7b8990bbbcebcb1c3de8d20f8f27d011 (diff) | |
download | hercules-1a0619fcedf573c7004489470f169e112fa1bb62.tar.gz hercules-1a0619fcedf573c7004489470f169e112fa1bb62.tar.bz2 hercules-1a0619fcedf573c7004489470f169e112fa1bb62.tar.xz hercules-1a0619fcedf573c7004489470f169e112fa1bb62.zip |
Merge pull request #2586 from Asheraf/madostatueffect
Implement support for switching madogear type
Diffstat (limited to 'db')
-rw-r--r-- | db/constants.conf | 2 | ||||
-rw-r--r-- | db/sc_config.conf | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/db/constants.conf b/db/constants.conf index f76f2ea6a..6f87b2d51 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -1416,6 +1416,7 @@ constants_db: { SC_RESIST_PROPERTY_FIRE: 666 SC_RESIST_PROPERTY_WIND: 667 SC_CLIENT_ONLY_EQUIP_ARROW: 668 + SC_MADOGEAR: 669 comment__: "Emotes" e_gasp: 0 @@ -4730,4 +4731,5 @@ constants_db: { SI_FRESHSHRIMP: 921 SI_SUHIDE: 933 SI_SPRITEMABLE: 937 + SI_MADOGEAR: 1149 } diff --git a/db/sc_config.conf b/db/sc_config.conf index 1d8f50e1c..2520fc595 100644 --- a/db/sc_config.conf +++ b/db/sc_config.conf @@ -3664,3 +3664,14 @@ SC_SV_ROOTTWIST: { NoBoss: true } } +SC_MADOGEAR: { + Visible: true + Flags: { + NoDeathReset: true + NoDispelReset: true + NoClearanceReset: true + NoAllReset: true + NoBoss: true + } + Icon: "SI_MADOGEAR" +} |