From f59e64c5ca60935d80e60ef775490dd0c6ef7db1 Mon Sep 17 00:00:00 2001 From: IreoftheShire <155935118+IreoftheShire@users.noreply.github.com> Date: Sun, 7 Jan 2024 19:28:50 -0800 Subject: [PATCH] Create Thread.js Adds thread. --- mods/Thread.js | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 mods/Thread.js diff --git a/mods/Thread.js b/mods/Thread.js new file mode 100644 index 00000000..1d04fa7e --- /dev/null +++ b/mods/Thread.js @@ -0,0 +1,62 @@ +elements.thread = { + color: "#fff3e6", + behavior: behaviors.STURDYPOWDER, + category: "thread", + state: "solid", + tempHigh: "50", + stateHigh: "ash", + hardness: "0.2", + breakInto: "wool" + density: " 1314", + burn: "99", + burnTime: "40" + burnInto: "ash", + reactions: { + "weavepowder": { elem1: null, elem2: "rope" }, +}; + +elements.wool = { + color: "#e2e1d8", + behavior: behaviors.POWDER, + category: "thread", + state: "solid", + tempHigh: "40", + stateHigh: "ash", + hardness: "1", + density: " 1314", + burn: "90", + burnTime: "40" + burnInto: "ash", + reactions: { + "weavepowder": { elem1: null, elem2: "thread" }, +}; +elements.weavepowder = { + color: "#494736", + behavior: behaviors.POWDER, + category: "thread", + state: "solid", + tempHigh: "5000000", + stateHigh: "dust", + hardness: "1", + density: " 1314", + burn: "0", + burnTime: "0" + burnInto: "dust", + reactions: { + "wool": { elem1: thread, elem2: "null" }, + "thread": { elem1: rope, elem2: "null" }, +}; +elements.rope = { + color: "#ffe6cc", + behavior: behaviors.STURDYPOWDER, + category: "thread", + state: "solid", + tempHigh: "60", + stateHigh: "ash", + hardness: "0.4", + breakInto: "thread" + density: " 1314", + burn: "85", + burnTime: "50" + burnInto: "ash", +};