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

@@ -5,7 +5,7 @@ import { head as rogueHead } from './sets/rogue';
import { head as warriorHead } from './sets/warrior';
import { head as wizardHead } from './sets/wizard';
import { head as armoireHead } from './sets/armoire';
import armoire from './sets/armoire';
import { head as mysteryHead } from './sets/mystery';
import { head as specialHead } from './sets/special';
@@ -19,7 +19,9 @@ const head = {
special: specialHead,
mystery: mysteryHead,
armoire: armoireHead,
get armoire () {
return armoire.head;
},
};
export default head;