18 lines
370 B
JavaScript
18 lines
370 B
JavaScript
const effects = {
|
|
1: [1],
|
|
2: [2],
|
|
3: [3],
|
|
4: [4],
|
|
5: [5],
|
|
6: [6],
|
|
7: [7],
|
|
8: [8]
|
|
};
|
|
|
|
/*
|
|
Keys are the effectID's. Arrays bounded to them contain itemID's.
|
|
This is used to activate the items bounded to the effects.
|
|
It looks redundant: arrays are used so multiple items can be bounded to one effect.
|
|
*/
|
|
|
|
module.exports = effects; |