-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebuffDB.lua
More file actions
31 lines (25 loc) · 1.12 KB
/
debuffDB.lua
File metadata and controls
31 lines (25 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
-- Adding descriptions:
-- --------------------
-- (best method if adding multiple) Debuffs.addDescs([debuff type],{'[string to match]','[another string to match]',....}) -> e.g. Debuffs.addDescs('silence',{'cannot cast','holy locked'})
-- (best method if adding just one) Debuffs.addDesc([debuff type],'[string to match]') -> e.g. Debuffs.addDesc('slow','speed reduced')
-- Adding names:
-- --------------
-- (best method if adding multiple) Debuffs.addNames([debuff type],{'[debuff name]','[debuff name]',....}) -> e.g. Debuffs.addNames('slow',{'Dazed','Hamstring','Ice Trap'})
-- (best method if adding just one) Debuffs.addName([debuff type],'[debuff name]') -> e.g. Debuffs.addName('stun','Stunned')
Debuffs.addDescs('incap',{
'[uU]nable to move or act'
,'[cC]annot move or act'
});
Debuffs.addDescs('slow',{
'[rR]educes ?.- movement speed'
,'decreasing ?.- movement speed'
,'[mM]ovement speed reduced'
});
Debuffs.addDescs('root',{
'preventing them from moving'
});
Debuffs.addDesc('stun','teleported you out of the Silver Enclave');
Debuffs.addDescs('silence',{
'prevent.- from casting spells'
,'prevents casting'
});