diff --git a/src/main/java/com/volmit/iris/util/nbt/mca/palettes/DataPaletteGlobal.java b/src/main/java/com/volmit/iris/util/nbt/mca/palettes/DataPaletteGlobal.java
new file mode 100644
index 000000000..67e4a9a6d
--- /dev/null
+++ b/src/main/java/com/volmit/iris/util/nbt/mca/palettes/DataPaletteGlobal.java
@@ -0,0 +1,76 @@
+/*
+ * Iris is a World Generator for Minecraft Bukkit Servers
+ * Copyright (c) 2021 Arcane Arts (Volmit Software)
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+package com.volmit.iris.util.nbt.mca.palettes;
+
+import com.volmit.iris.util.nbt.tag.CompoundTag;
+import com.volmit.iris.util.nbt.tag.ListTag;
+
+import java.util.function.Predicate;
+
+public class DataPaletteGlobal implements DataPalette {
+ private final RegistryBlockID a;
+ private final T b;
+
+ public DataPaletteGlobal(RegistryBlockID var0, T var1) {
+ this.a = var0;
+ this.b = var1;
+ }
+
+ public int getIndex(T var0) {
+ int var1 = this.a.getId(var0);
+ return var1 == -1 ? 0 : var1;
+ }
+
+ public boolean a(Predicate var0) {
+ return true;
+ }
+
+ public T getByIndex(int var0) {
+ T var1 = this.a.fromId(var0);
+ return var1 == null ? this.b : var1;
+ }
+
+ public static int aa(int i) {
+ for(int j = 1; j < 5; ++j) {
+ if ((i & -1 << j * 7) == 0) {
+ return j;
+ }
+ }
+
+ return 5;
+ }
+
+ public int a() {
+ return aa(0);
+ }
+
+ public int b() {
+ return this.a.size();
+ }
+
+ @Override
+ public void replace(ListTag t) {
+
+ }
+
+ @Override
+ public ListTag getPalette() {
+ return null;
+ }
+}