Refactor armoire content to be cached by day

This commit is contained in:
Phillip Thelen
2024-05-15 16:51:09 +02:00
parent 46d164ddd1
commit 4d38880249
17 changed files with 198 additions and 97 deletions

View File

@@ -7,7 +7,7 @@ import { armor as wizardArmor } from './sets/wizard';
import { armor as specialArmor } from './sets/special';
import { armor as mysteryArmor } from './sets/mystery';
import { armor as armoireArmor } from './sets/armoire';
import armoire from './sets/armoire';
const armor = {
base: baseArmor,
@@ -19,7 +19,9 @@ const armor = {
special: specialArmor,
mystery: mysteryArmor,
armoire: armoireArmor,
get armoire () {
return armoire.armor;
},
};
export default armor;