summaryrefslogtreecommitdiff
path: root/src/enum.js
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-06-23 23:43:14 +0200
committerDaniel Weipert <git@mail.dweipert.de>2024-06-23 23:43:14 +0200
commit0028d1276f042953a4034016815593006d823f6d (patch)
treec3cea08bad6778e24fc3b7de905069f5c35889ff /src/enum.js
parentfcbea16f2ae86843eb214f64e02a96862e8e3564 (diff)
generate json files programmatically
Diffstat (limited to 'src/enum.js')
-rw-r--r--src/enum.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/enum.js b/src/enum.js
new file mode 100644
index 0000000..f6b0dd7
--- /dev/null
+++ b/src/enum.js
@@ -0,0 +1,16 @@
+const TemplatePool = Object.freeze({
+ EMPTY_16: 'vanilla_skyblock:empty_16',
+ EMPTY_FULL: 'vanilla_skyblock:empty_full',
+});
+
+const JigsawStartHeight = Object.freeze({
+ UNIFORM: Symbol('uniform'),
+ BIASED_TO_BOTTOM: Symbol('biased_to_bottom'),
+ VERY_BIASED_TO_BOTTOM: Symbol('very_biased_to_bottom'),
+});
+
+
+module.exports = {
+ TemplatePool,
+ JigsawStartHeight,
+};