From d764f49082e4a363b06faab79685b8287a756d48 Mon Sep 17 00:00:00 2001 From: Aitorbrine <140336973+Aitorbrine@users.noreply.github.com> Date: Sat, 10 May 2025 22:47:00 +0200 Subject: [PATCH] Create vinegar.js In this mod you can make vinegar with acetobacter --- mods/vinegar.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 mods/vinegar.js diff --git a/mods/vinegar.js b/mods/vinegar.js new file mode 100644 index 00000000..ae952ab4 --- /dev/null +++ b/mods/vinegar.js @@ -0,0 +1,17 @@ +elements.acetobacter = { + color: ["#328fa8", "#6bbfd6", "#19718a"], + category: "life", + tempHigh: "102", + tempLow: "-2", + stateHigh: ["steam","steam","steam","sugar"], + stateLow: ["ice","ice","ice","sugar_ice"], + breakInto:["dna","dna","dna","water"], + behavior: [ + ["XX","M1%30","XX"], + ["M1%50","XX","M1%50"], + ["XX","M1%30","XX"] + ], + reactions:{ + "alcohol" :{ elem1: "acetobacter", elem2:"vinegar", chance:0.2,} + } +}