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 { weapon as rogueWeapon } from './sets/rogue';
import { shield as warriorShield } from './sets/warrior';
import { shield as wizardShield } from './sets/wizard';
import { shield as armoireShield } from './sets/armoire';
import armoire from './sets/armoire';
import { shield as mysteryShield } from './sets/mystery';
import { shield as specialShield } from './sets/special';
@@ -23,7 +23,9 @@ const shield = {
special: specialShield,
mystery: mysteryShield,
armoire: armoireShield,
get armoire () {
return armoire.shield;
},
};
export default shield;