summaryrefslogtreecommitdiff
path: root/src/enum.js
diff options
context:
space:
mode:
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..8f1629d
--- /dev/null
+++ b/src/enum.js
@@ -0,0 +1,16 @@
+const TemplatePool = Object.freeze({
+ EMPTY_16: 'original_skyblock:empty_16',
+ EMPTY_FULL: 'original_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,
+};