From b368e6e209ca96a2caffce0cc44e2ade25725c68 Mon Sep 17 00:00:00 2001 From: StellarX20 <97905447+StellarX20@users.noreply.github.com> Date: Thu, 10 Feb 2022 14:18:13 -0500 Subject: [PATCH] Added glowstone, redstone dust, and added molten netherrack. --- mods/minecraft.js | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/mods/minecraft.js b/mods/minecraft.js index e05da6f7..3678c74f 100644 --- a/mods/minecraft.js +++ b/mods/minecraft.js @@ -22,5 +22,37 @@ color: ["#8c2a0a", "#783722"], behavior: behaviors.WALL, category: "minecraft", state: "solid", -tempHigh: 2750 +tempHigh: 2750, +stateHigh: "molten_netherrack", +}; +elements.glowstone_dust = { +color: ["#d9d636", "#fffc63", "#a3a12f", "#e0dd3f"], +behavior: behaviors.POWDER, +category: "minecraft", +state: "solid", +tempHigh: 2500, +stateHigh: "molten_glowstone", +conduct: 0.975, +density: 1075 +}; +elements.molten_netherrack = { +name: "Nether Magma", +color: ["#f7f09c", "#faf9eb", "#ffffff", "#dcf7f7", "#86dbdb", "#1268a6"], +behavior: behaviors.LIQUID, +category: "minecraft", +state: "liquid", +tempLow: 2750, +stateLow: "netherrack", +temp: 3000, +viscosity: 1000, +density: 2305 +}; +elements.redstone_dust = { +color: ["#bf2424", "#f22424", "#a12020"], +behavior: behaviors.POWDER, +category: "minecraft", +state: "solid", +tempHigh: 1275, +stateHigh: "liquid_redstone", +density: 1250 };