From 22d100b2134f05f38a4cf9cf36d04e20335a4444 Mon Sep 17 00:00:00 2001 From: Lily-129 <68935009+Lily-129@users.noreply.github.com> Date: Thu, 3 Mar 2022 09:56:50 -0500 Subject: [PATCH] some alcohols suggest reacts pls --- mods/alcohol.js | 101 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 mods/alcohol.js diff --git a/mods/alcohol.js b/mods/alcohol.js new file mode 100644 index 00000000..1a72e973 --- /dev/null +++ b/mods/alcohol.js @@ -0,0 +1,101 @@ +elements.alcohol.name = "ethanol" +elements.alcohol.viscosity = elements.alcohol.viscosity * (1.074/1.0016) + +elements.methanol = { + color: "#c9c5b1", + behavior: behaviors.LIQUID, + reactions: { + "virus": { "elem2":null }, + "plague": { "elem2":null }, + "head": { "elem2":"rotten_meat", "chance": 0.8 }, + "body": { "elem2":"rotten_meat", "chance": 0.8 }, + }, + viscosity: 1*(0.553/1.0016), + tempHigh: 64.7, + stateHigh: ["steam","carbon_dioxide"], //todo: alcohols' phase transitions + burn: 100, + burnTime: 2, + fireColor: "#b2c5d1", + category: "liquids", + state: "liquid", + density: 792, + stain: -0.25, +} + + +elements.methanol = { + color: "#c9c5b1", + behavior: behaviors.LIQUID, + reactions: { + "virus": { "elem2":null }, + "plague": { "elem2":null }, + "head": { "elem2":"rotten_meat", "chance": 0.8 }, + "body": { "elem2":"rotten_meat", "chance": 0.8 }, + }, + viscosity: 1*(0.553/1.0016), + tempHigh: 64.7, + stateHigh: ["steam","carbon_dioxide"], //todo: alcohols' phase transitions + burn: 100, + burnTime: 2, + fireColor: "#b2c5d1", + category: "liquids", + state: "liquid", + density: 792, + stain: -0.25, +} + +elements.propanol = { + color: "#c9c5b1", + behavior: behaviors.LIQUID, + reactions: { + "virus": { "elem2":null }, + "plague": { "elem2":null }, + }, + viscosity: 1*(1.945/1.0016), + tempHigh: 97, + stateHigh: ["steam","carbon_dioxide"], + burn: 100, + burnTime: 3, + fireColor: "#ced8de", + category: "liquids", + state: "liquid", + density: 803, + stain: -0.25, +} + +elements.isopropanol = { + color: "#c9c5b1", + behavior: behaviors.LIQUID, + reactions: { + "virus": { "elem2":null }, + "plague": { "elem2":null }, + }, + viscosity: 1*(2.052/1.0016), + tempHigh: 82.5, + stateHigh: ["steam","carbon_dioxide"], + burn: 100, + burnTime: 3, + fireColor: "#d1c958", + category: "liquids", + state: "liquid", + density: 786, + stain: -0.25, +} + +elements.butanol = { + color: "#c9c5b1", + behavior: behaviors.LIQUID, + reactions: { + "virus": { "elem2":null }, + "plague": { "elem2":null }, + }, + viscosity: 1*(2.53/1.0016), + tempHigh: 118, + stateHigh: ["steam","carbon_dioxide"], + burn: 100, + burnTime: 3, + category: "liquids", + state: "liquid", + density: 810, + stain: -0.25, +} \ No newline at end of file