diff options
author | Haru <haru@dotalux.com> | 2020-05-04 14:25:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-04 14:25:04 +0200 |
commit | a126526feea0acbbc4cc8c591b8759093b144dd9 (patch) | |
tree | beff524d797ea48c037f165d457f3e96746f95f5 /db | |
parent | 43b9a6987c5fc22c15c817a7c364393b49fb5f36 (diff) | |
parent | cd593de68b02d77766fcb3b7b2a869096ceb7183 (diff) | |
download | hercules-a126526feea0acbbc4cc8c591b8759093b144dd9.tar.gz hercules-a126526feea0acbbc4cc8c591b8759093b144dd9.tar.bz2 hercules-a126526feea0acbbc4cc8c591b8759093b144dd9.tar.xz hercules-a126526feea0acbbc4cc8c591b8759093b144dd9.zip |
Merge pull request #2188 from bWolfie/cell_noskill
Adds 'cell_noskill' which blocks skill usage.
Diffstat (limited to 'db')
-rw-r--r-- | db/constants.conf | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/db/constants.conf b/db/constants.conf index 9b11a43e9..6f8030a45 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -428,17 +428,20 @@ constants_db: { mf_nogstorage: 60 comment__: "Cell Properties" - cell_walkable: 0 - cell_shootable: 1 - cell_water: 2 - cell_npc: 3 - cell_basilica: 4 - cell_landprotector: 5 - cell_novending: 6 - cell_nochat: 7 + cell_walkable: 0 + cell_shootable: 1 + cell_water: 2 + cell_npc: 3 + cell_basilica: 4 + cell_landprotector: 5 + cell_novending: 6 + cell_nochat: 7 + cell_icewall: 8 + cell_noicewall: 9 + cell_noskill: 10 comment__: "Cell checks" - //cell_gettype: 0 + cell_gettype: 0 cell_chkwall: 1 cell_chkwater: 2 cell_chkcliff: 3 @@ -446,12 +449,15 @@ constants_db: { cell_chkreach: 5 cell_chknopass: 6 cell_chknoreach: 7 - //cell_chkstack: 8 + cell_chkstack: 8 cell_chknpc: 9 cell_chkbasilica: 10 cell_chklandprotector: 11 cell_chknovending: 12 cell_chknochat: 13 + cell_chkicewall: 14 + cell_chknoicewall: 15 + cell_chknoskill: 16 comment__: "Bonuses / Parameter IDs" bMaxHP: 6 |