Files
pirate-corsaire-server/Data/effects.js
T
2026-08-24 22:20:36 +02:00

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;