Merge pull request #1003 from NM-Lolbit/patch-4

Update mjsstuff.js
This commit is contained in:
slweeb 2025-02-13 15:23:32 -05:00 committed by GitHub
commit 4f29866d38
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 61 additions and 2 deletions

View File

@ -160,6 +160,65 @@ elements.icing = {
category: "food",
state: "powder",
viscosity: 2000,
};
elements.Hazel = {
color: ["#189BCC",],
behavior: behaviors.SUPERFLUID,
category: "joke",
state: "liquid",
viscosity: 0,
};
elements.guhguhgugu = {
color: ["#a73acf", "#9e26c9", "#be5ee0",],
behavior: behaviors.LIQUID,
category: "joke",
state: "liquid",
stateLow: "frozen_guhguhgugu",
tempLow: -150,
stateHigh: "solid_guhguhgugu",
tempHigh: 150,
};
elements.solid_guhguhgugu = {
color: ["#a73acf", "#9e26c9", "#be5ee0",],
behavior: behaviors.SOLID,
category: "joke",
state: "solid",
stateLow: "guhguhgugu",
tempLow: 150,
stateHigh: "liquid_guhguhgugu",
tempHigh: 250,
};
elements.liquid_guhguhgugu = {
color: ["#a73acf", "#9e26c9", "#be5ee0",],
behavior: behaviors.MOLTEN,
category: "molten",
state: "molten",
tempLow: "250",
stateLow: "solid_guhguhgugu",
stateHigh: "liquid_guhguhgugu",
tempHigh: 500,
};
elements.boil_guhguhgugu = {
color: ["#a73acf", "#9e26c9", "#be5ee0",],
behavior: behaviors.DGAS,
category: "joke",
state: "gas",
tempLow: "500",
stateLow: "liquid_guhguhgugu",
};
elements.frozen_guhguhgugu = {
color: ["#a73acf", "#9e26c9", "#be5ee0",],
behavior: behaviors.SOLID,
category: "joke",
state: "solid",
stateHigh: "guhguhgugu",
tempHigh: 15,
};