From b39dd218d903650f8784170e2308642ecd586fcd Mon Sep 17 00:00:00 2001 From: ThatOtherProto <127895014+ThatOtherProto@users.noreply.github.com> Date: Mon, 8 Apr 2024 20:00:28 +0100 Subject: [PATCH 1/2] Update Science_mod.js Still not finished (Check to-do list to see the things I have to-do before the main release) --- mods/Science_mod.js | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/mods/Science_mod.js b/mods/Science_mod.js index df1eab48..252e7636 100644 --- a/mods/Science_mod.js +++ b/mods/Science_mod.js @@ -1,5 +1,6 @@ // Science mod for Sandboxels // (Inspired by survival.js) +// Build 10 // By: Lucifer (@a_british_proto (Discord)) // If there is anything you want to suggest or there's a bug then just dm me on discord // Todo: @@ -1109,4 +1110,20 @@ substance.Cinnamaldehyde = { hidden:true } -// Doing more tmrw +substance.Acetone = { + behavior: behaviors.LIQUID, + color:"DADEDF", + category:"liquids", + state:"liquid", + hidden:true +} + +substance.Methane = { + behavior: behaviors.GAS, + color:"C1C7C9", + category:"gases", + state:"gas", + hidden:true +} + +// Doing more later From 0b8fa40b601f428f7843a83cda007197066413f4 Mon Sep 17 00:00:00 2001 From: ThatOtherProto <127895014+ThatOtherProto@users.noreply.github.com> Date: Mon, 8 Apr 2024 20:08:22 +0100 Subject: [PATCH 2/2] Update Science_mod.js Added new substance property, adding more tmrw (not really active today :/) --- mods/Science_mod.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/mods/Science_mod.js b/mods/Science_mod.js index 252e7636..0b14d1a3 100644 --- a/mods/Science_mod.js +++ b/mods/Science_mod.js @@ -1,6 +1,6 @@ // Science mod for Sandboxels // (Inspired by survival.js) -// Build 10 +// Build 11 // By: Lucifer (@a_british_proto (Discord)) // If there is anything you want to suggest or there's a bug then just dm me on discord // Todo: @@ -1126,4 +1126,12 @@ substance.Methane = { hidden:true } -// Doing more later +substance.Ethane = { + behavior: behaviors.GAS, + color:"C1C7C9", + category:"gases", + state:"gas", + hidden:true +} + +// Doing more tmrw