From 72e1d61b7596811aac8d998c4ed973673d7e710e Mon Sep 17 00:00:00 2001 From: JustAGenericUsername Date: Thu, 21 Mar 2024 20:02:51 -0400 Subject: [PATCH] funny spacedust drink --- mods/nousersthings.js | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/mods/nousersthings.js b/mods/nousersthings.js index 7164924c..006af6b3 100644 --- a/mods/nousersthings.js +++ b/mods/nousersthings.js @@ -2343,4 +2343,28 @@ elements.scuffed_circle_brush = { deletePixel(thisx, thisy) createPixel(circleElem, thisx, thisy) } -} \ No newline at end of file +} +elements.spacedust_cola = { + color: ["#090033", "#0a0027", "#0a001b", "#0b000f"], + behavior: elements.soda.behavior, + tempHigh: 104, + stateHigh: ["steam", "carbon_dioxide", "spacedust", "spacedust"], + category: "liquids", + state: "liquid", + reactions: {head: {elem1: null, chance: 0.02}}, + density: elements.tungsten.density, +} +elements.spacedust = { + color: ["#090033", "#0a0027", "#0a001b", "#0b000f", "#090033", "#0a0027", "#0a001b", "#0b000f", "#090033", "#0a0027", "#0a001b", "#0b000f", "#090033", "#0a0027", "#0a001b", "#0b000f", "#090033", "#0a0027", "#0a001b", "#0b000f", "#090033", "#0a0027", "#0a001b", "#0b000f", "#ffffff"], + behavior: behaviors.POWDER, + category: "special", + state: "solid", + reactions: { + "acid": {elem1: null, elem2: ["hydrogen", "helium", "hydrogen", "helium", "hydrogen", "helium", "hydrogen", "hydrogen", "hydrogen", "hydrogen", "metal_scrap"], chance: 0.02}, + "seltzer": {elem1: null, elem2: "spacedust_cola"}, + "soda": {elem1: null, elem2: "spacedust_cola"}, + }, + density: elements.tungsten.density, +} +elements.acid.ignore.push("spacedust") +elements.acid.ignore.push("spacedust_cola") \ No newline at end of file