From ccba7978810adf09de209c9e503cf713e510d5a7 Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Tue, 19 Mar 2024 15:55:21 +0000 Subject: [PATCH 01/10] Create tech.js Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> --- mods/tech.js | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 mods/tech.js diff --git a/mods/tech.js b/mods/tech.js new file mode 100644 index 00000000..470e1847 --- /dev/null +++ b/mods/tech.js @@ -0,0 +1,55 @@ +elements.monitor_case = { + color: "#4a4848", + behavior: behaviors.SOLID, + category: "Tech", + state: "solid", + density: 500, +}; + +elements.pc_core = { + color: "#f0cd43", + behavior: [ + "XX|SH|XX", + "SH|XX|SH", + "XX|SH|XX", + ], + category: "Tech", + tempHigh: 8000, + stateHigh: ["molten_steel","explosion","molten_iron"] +}; + +elements.red_wire = { + color: "#ff3d1f", + behavior: behaviors.WALL, + category: "Tech", + insulate: true, + conduct: 3, + noMix: true +}; + +elements.green_wire = { + color: "#66c22d", + behavior: behaviors.WALL, + category: "Tech", + insulate: true, + conduct: 3, + noMix: true +}; + +elements.blue_wire = { + color: "#1f81cc", + behavior: behaviors.WALL, + category: "Tech", + insulate: true, + conduct: 3, + noMix: true +}; + +elements.electrogalvanized = { + color: "#6c6e70", + behavior: behaviors.SOLID, + category: "Tech", + state: "solid", + conduct: 2, + density: 7850, +}; From 9f85e9f06ad115a5e8caf692395e34872cc1fffa Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Tue, 19 Mar 2024 16:48:39 +0000 Subject: [PATCH 02/10] Update tech.js Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> --- mods/tech.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/tech.js b/mods/tech.js index 470e1847..3296fedb 100644 --- a/mods/tech.js +++ b/mods/tech.js @@ -47,7 +47,7 @@ elements.blue_wire = { elements.electrogalvanized = { color: "#6c6e70", - behavior: behaviors.SOLID, + behavior: behaviors.WALL, category: "Tech", state: "solid", conduct: 2, From 8dccee116cfaf4c868b3fbbb90eb6dc480432bd6 Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Tue, 19 Mar 2024 21:30:04 +0000 Subject: [PATCH 03/10] Update tech.js Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> --- mods/tech.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mods/tech.js b/mods/tech.js index 3296fedb..40d0cfea 100644 --- a/mods/tech.js +++ b/mods/tech.js @@ -1,7 +1,7 @@ elements.monitor_case = { color: "#4a4848", behavior: behaviors.SOLID, - category: "Tech", + category: "machines", state: "solid", density: 500, }; @@ -13,7 +13,7 @@ elements.pc_core = { "SH|XX|SH", "XX|SH|XX", ], - category: "Tech", + category: "machines", tempHigh: 8000, stateHigh: ["molten_steel","explosion","molten_iron"] }; @@ -21,7 +21,7 @@ elements.pc_core = { elements.red_wire = { color: "#ff3d1f", behavior: behaviors.WALL, - category: "Tech", + category: "machines", insulate: true, conduct: 3, noMix: true @@ -30,7 +30,7 @@ elements.red_wire = { elements.green_wire = { color: "#66c22d", behavior: behaviors.WALL, - category: "Tech", + category: "machines", insulate: true, conduct: 3, noMix: true @@ -39,7 +39,7 @@ elements.green_wire = { elements.blue_wire = { color: "#1f81cc", behavior: behaviors.WALL, - category: "Tech", + category: "machines", insulate: true, conduct: 3, noMix: true @@ -48,7 +48,7 @@ elements.blue_wire = { elements.electrogalvanized = { color: "#6c6e70", behavior: behaviors.WALL, - category: "Tech", + category: "machines", state: "solid", conduct: 2, density: 7850, From ff6e8a13319552ddd7baad631a3e6d70beb3827a Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Wed, 20 Mar 2024 07:30:19 +0000 Subject: [PATCH 04/10] Update tech.js Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> --- mods/tech.js | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) diff --git a/mods/tech.js b/mods/tech.js index 40d0cfea..b03ac07f 100644 --- a/mods/tech.js +++ b/mods/tech.js @@ -1,7 +1,7 @@ elements.monitor_case = { color: "#4a4848", behavior: behaviors.SOLID, - category: "machines", + category: "tech", state: "solid", density: 500, }; @@ -13,43 +13,64 @@ elements.pc_core = { "SH|XX|SH", "XX|SH|XX", ], - category: "machines", + category: "tech", tempHigh: 8000, stateHigh: ["molten_steel","explosion","molten_iron"] + reactions: { + "water": { elem1: "explosion", elem2: "null" }, + "malware": { elem1: "null", elem2: "null" }, + } +}; + +elements.malfunctioned_wire = { + color: "#6d32a8", + behavior: behaviors.WALL, + category: "tech", + conduct: 999, + noMix: true }; elements.red_wire = { color: "#ff3d1f", behavior: behaviors.WALL, - category: "machines", + category: "tech", insulate: true, conduct: 3, noMix: true + reactions: { + "water": { elem1: "malfunctioned_wire", elem2: "null" }, + } }; elements.green_wire = { color: "#66c22d", behavior: behaviors.WALL, - category: "machines", + category: "tech", insulate: true, conduct: 3, noMix: true + reactions: { + "water": { elem1: "malfunctioned_wire", elem2: "null" }, + } }; elements.blue_wire = { color: "#1f81cc", behavior: behaviors.WALL, - category: "machines", + category: "tech", insulate: true, conduct: 3, noMix: true + reactions: { + "water": { elem1: "malfunctioned_wire", elem2: "null" }, + } }; elements.electrogalvanized = { color: "#6c6e70", behavior: behaviors.WALL, - category: "machines", + category: "tech", state: "solid", conduct: 2, density: 7850, -}; +};s From 1150d211fc451801cd87d6e9e8f414aab8691208 Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Wed, 20 Mar 2024 07:32:19 +0000 Subject: [PATCH 05/10] Update tech.js Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> --- mods/tech.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/tech.js b/mods/tech.js index b03ac07f..4ed37506 100644 --- a/mods/tech.js +++ b/mods/tech.js @@ -35,7 +35,7 @@ elements.red_wire = { behavior: behaviors.WALL, category: "tech", insulate: true, - conduct: 3, + conduct: 1, noMix: true reactions: { "water": { elem1: "malfunctioned_wire", elem2: "null" }, @@ -47,7 +47,7 @@ elements.green_wire = { behavior: behaviors.WALL, category: "tech", insulate: true, - conduct: 3, + conduct: 1, noMix: true reactions: { "water": { elem1: "malfunctioned_wire", elem2: "null" }, @@ -59,7 +59,7 @@ elements.blue_wire = { behavior: behaviors.WALL, category: "tech", insulate: true, - conduct: 3, + conduct: 1, noMix: true reactions: { "water": { elem1: "malfunctioned_wire", elem2: "null" }, From 4c154e8d5d30292984eda5976c774055ad53c621 Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Wed, 20 Mar 2024 08:14:42 +0000 Subject: [PATCH 06/10] Update tech.js Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> --- mods/tech.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/tech.js b/mods/tech.js index 4ed37506..ffcc7cb3 100644 --- a/mods/tech.js +++ b/mods/tech.js @@ -73,4 +73,4 @@ elements.electrogalvanized = { state: "solid", conduct: 2, density: 7850, -};s +}; From 0da558bd8e18ffbc0d42f9fdb9df7d62e1263098 Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Wed, 20 Mar 2024 08:31:38 +0000 Subject: [PATCH 07/10] Update tech.js Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> --- mods/tech.js | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/mods/tech.js b/mods/tech.js index ffcc7cb3..3d9eb065 100644 --- a/mods/tech.js +++ b/mods/tech.js @@ -15,11 +15,13 @@ elements.pc_core = { ], category: "tech", tempHigh: 8000, - stateHigh: ["molten_steel","explosion","molten_iron"] + stateHigh: ["molten_steel","explosion","molten_iron"], reactions: { + "poison": { elem1: "malfunctioned_wire", elem2: "null" }, + "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, "water": { elem1: "explosion", elem2: "null" }, "malware": { elem1: "null", elem2: "null" }, - } + }, }; elements.malfunctioned_wire = { @@ -36,10 +38,13 @@ elements.red_wire = { category: "tech", insulate: true, conduct: 1, - noMix: true + noMix: true, reactions: { + "acid": { elem1: "malfunctioned_wire", elem2: "null" }, + "poison": { elem1: "malfunctioned_wire", elem2: "null" }, + "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, "water": { elem1: "malfunctioned_wire", elem2: "null" }, - } + }, }; elements.green_wire = { @@ -48,10 +53,13 @@ elements.green_wire = { category: "tech", insulate: true, conduct: 1, - noMix: true + noMix: true, reactions: { + "acid": { elem1: "malfunctioned_wire", elem2: "null" }, + "poison": { elem1: "malfunctioned_wire", elem2: "null" }, + "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, "water": { elem1: "malfunctioned_wire", elem2: "null" }, - } + }, }; elements.blue_wire = { @@ -60,10 +68,13 @@ elements.blue_wire = { category: "tech", insulate: true, conduct: 1, - noMix: true + noMix: true, reactions: { + "acid": { elem1: "malfunctioned_wire", elem2: "null" }, + "poison": { elem1: "malfunctioned_wire", elem2: "null" }, "water": { elem1: "malfunctioned_wire", elem2: "null" }, - } + "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, + }, }; elements.electrogalvanized = { From 7365439109de5740083aba6cb8daab272a556a64 Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Wed, 20 Mar 2024 08:32:03 +0000 Subject: [PATCH 08/10] Update tech.js Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> --- mods/tech.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mods/tech.js b/mods/tech.js index 3d9eb065..0d93631b 100644 --- a/mods/tech.js +++ b/mods/tech.js @@ -19,7 +19,7 @@ elements.pc_core = { reactions: { "poison": { elem1: "malfunctioned_wire", elem2: "null" }, "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, - "water": { elem1: "explosion", elem2: "null" }, + "water": { elem1: "explosion", elem2: "null" }, "malware": { elem1: "null", elem2: "null" }, }, }; @@ -43,7 +43,7 @@ elements.red_wire = { "acid": { elem1: "malfunctioned_wire", elem2: "null" }, "poison": { elem1: "malfunctioned_wire", elem2: "null" }, "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, - "water": { elem1: "malfunctioned_wire", elem2: "null" }, + "water": { elem1: "malfunctioned_wire", elem2: "null" }, }, }; @@ -58,7 +58,7 @@ elements.green_wire = { "acid": { elem1: "malfunctioned_wire", elem2: "null" }, "poison": { elem1: "malfunctioned_wire", elem2: "null" }, "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, - "water": { elem1: "malfunctioned_wire", elem2: "null" }, + "water": { elem1: "malfunctioned_wire", elem2: "null" }, }, }; @@ -72,7 +72,7 @@ elements.blue_wire = { reactions: { "acid": { elem1: "malfunctioned_wire", elem2: "null" }, "poison": { elem1: "malfunctioned_wire", elem2: "null" }, - "water": { elem1: "malfunctioned_wire", elem2: "null" }, + "water": { elem1: "malfunctioned_wire", elem2: "null" }, "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, }, }; From a9c7f737c4919cde7b49e97602c21a318fd66450 Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Thu, 21 Mar 2024 08:10:01 +0000 Subject: [PATCH 09/10] Update tech.js Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> --- mods/tech.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mods/tech.js b/mods/tech.js index 0d93631b..a6c50127 100644 --- a/mods/tech.js +++ b/mods/tech.js @@ -22,6 +22,7 @@ elements.pc_core = { "water": { elem1: "explosion", elem2: "null" }, "malware": { elem1: "null", elem2: "null" }, }, + breakInto: "rust", }; elements.malfunctioned_wire = { @@ -45,6 +46,7 @@ elements.red_wire = { "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, "water": { elem1: "malfunctioned_wire", elem2: "null" }, }, + breakInto: "plastic", }; elements.green_wire = { @@ -60,6 +62,7 @@ elements.green_wire = { "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, "water": { elem1: "malfunctioned_wire", elem2: "null" }, }, + breakInto: "plastic", }; elements.blue_wire = { @@ -75,6 +78,7 @@ elements.blue_wire = { "water": { elem1: "malfunctioned_wire", elem2: "null" }, "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, }, + breakInto: "plastic", }; elements.electrogalvanized = { From 0144f7ce2a70342188e8ba8280bcde5428d99e77 Mon Sep 17 00:00:00 2001 From: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> Date: Fri, 22 Mar 2024 07:37:22 +0000 Subject: [PATCH 10/10] Update tech.js Signed-off-by: HACKERPRO908 <130792075+HACKERPRO908@users.noreply.github.com> --- mods/tech.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mods/tech.js b/mods/tech.js index a6c50127..b5b9b949 100644 --- a/mods/tech.js +++ b/mods/tech.js @@ -22,7 +22,7 @@ elements.pc_core = { "water": { elem1: "explosion", elem2: "null" }, "malware": { elem1: "null", elem2: "null" }, }, - breakInto: "rust", + breakInto: ["rust", "electrogalvanized"], }; elements.malfunctioned_wire = { @@ -46,7 +46,7 @@ elements.red_wire = { "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, "water": { elem1: "malfunctioned_wire", elem2: "null" }, }, - breakInto: "plastic", + breakInto: ["plastic", "copper"], }; elements.green_wire = { @@ -62,7 +62,7 @@ elements.green_wire = { "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, "water": { elem1: "malfunctioned_wire", elem2: "null" }, }, - breakInto: "plastic", + breakInto: ["plastic", "copper"], }; elements.blue_wire = { @@ -78,7 +78,7 @@ elements.blue_wire = { "water": { elem1: "malfunctioned_wire", elem2: "null" }, "salt_water": { elem1: "malfunctioned_wire", elem2: "null" }, }, - breakInto: "plastic", + breakInto: ["plastic", "copper"], }; elements.electrogalvanized = {