Create vinegar.js

In this mod you can make vinegar with acetobacter
This commit is contained in:
Aitorbrine 2025-05-10 22:47:00 +02:00 committed by GitHub
parent 630a680cde
commit d764f49082
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 0 deletions

17
mods/vinegar.js Normal file
View File

@ -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,}
}
}