This commit is contained in:
slweeb 2023-12-09 23:47:19 -05:00
commit 51878cf629
4 changed files with 401 additions and 34 deletions

128
mods/customexplosion.js Normal file
View File

@ -0,0 +1,128 @@
//This mod was made by Alex the transfem, https://discord.com/users/778753696804765696 on discord and https://www.tiktok.com/@alextheagenenby?_t=8hoCVI3NRhu&_r=1 on tiktok.
//How to use this:
//in the reactions of an element, this is what it could look like:
//reactions: { "water": elem1: "CustomExplosion", items: "fire,fire,hydrogen,sodiumhydroxide" }
//OR
//reactions: { "water": elem1: "CustomExplosion", items: "EX:10>fire,fire,hydrogen.sodiumhydroxide" } (this one has a customizeable blast radius)
function reactPixels(pixel1,pixel2) {
var r = elements[pixel1.element].reactions[pixel2.element];
if (r.setting && settings[r.setting]===0) {
return false;
}
// r has the attribute "y" which is a range between two y values
// r.y example: [10,30]
// return false if y is defined and pixel1's y is not in the range
if (r.tempMin !== undefined && pixel1.temp < r.tempMin) {
return false;
}
if (r.tempMax !== undefined && pixel1.temp > r.tempMax) {
return false;
}
if (r.burning1 !== undefined && Boolean(pixel1.burning) !== r.burning1) {
return false;
}
if (r.burning2 !== undefined && Boolean(pixel2.burning) !== r.burning2) {
return false;
}
if (r.charged && !pixel.charge) {
return false;
}
if (r.chance !== undefined && Math.random() > r.chance) {
return false;
}
if (r.y !== undefined && (pixel1.y < r.y[0] || pixel1.y > r.y[1])) {
return false;
}
if (r.elem1 !== undefined) {
// if r.elem1 is an array, set elem1 to a random element from the array, otherwise set it to r.elem1
if (Array.isArray(r.elem1)) {
var elem1 = r.elem1[Math.floor(Math.random() * r.elem1.length)];
if(elem1 == "customExplosion"){
if(r.items !== undefined){
elements.customExplosion.rItems = r.items
} else{
return false;
}
}
} else {
var elem1 = r.elem1;
if(elem1 == "customExplosion"){
if(r.items !== undefined){
elements.customExplosion.rItems = r.items
} else{
return false;
}
}
}
if (elem1 == null) {
deletePixel(pixel1.x,pixel1.y);
}
else {
changePixel(pixel1,elem1);
}
}
if (r.charge1) { pixel1.charge = r.charge1; }
if (r.temp1) { pixel1.temp += r.temp1; pixelTempCheck(pixel1); }
if (r.color1) { // if it's a list, use a random color from the list, else use the color1 attribute
pixel1.color = pixelColorPick(pixel1, Array.isArray(r.color1) ? r.color1[Math.floor(Math.random() * r.color1.length)] : r.color1);
}
if (r.attr1) { // add each attribute to pixel1
for (var key in r.attr1) {
pixel1[key] = r.attr1[key];
}
}
if (r.elem2 !== undefined) {
// if r.elem2 is an array, set elem2 to a random element from the array, otherwise set it to r.elem2
if (Array.isArray(r.elem2)) {
var elem2 = r.elem2[Math.floor(Math.random() * r.elem2.length)];
} else { var elem2 = r.elem2; }
if (elem2 == null) {
deletePixel(pixel2.x,pixel2.y);
}
else {
changePixel(pixel2,elem2);
}
}
if (r.charge2) { pixel2.charge = r.charge2; }
if (r.temp2) { pixel2.temp += r.temp2; pixelTempCheck(pixel2); }
if (r.color2) { // if it's a list, use a random color from the list, else use the color2 attribute
pixel2.color = pixelColorPick(pixel2, Array.isArray(r.color2) ? r.color2[Math.floor(Math.random() * r.color2.length)] : r.color2);
}
if (r.attr2) { // add each attribute to pixel2
for (var key in r.attr2) {
pixel2[key] = r.attr2[key];
}
}
if (r.func) { r.func(pixel1,pixel2); }
return r.elem1!==undefined || r.elem2!==undefined;
}
elements.customExplosion = {
items: "",
rItems: "",
behavior: behaviors.SOLID,
state: "solid",
onSelect: function(){
items = prompt("What should this explosion include?");
this.items = items;
console.log(items);
elements.customExplosion.behavior = [["XX", "XX", "XX"], ["XX", `EX:4>${items}`, "XX"], ["XX", "XX", "XX"]]
},
tick: function(pixel){
let items = elements.customExplosion.rItems;
if (items !== ""){
items = elements.customExplosion.rItems;
} else {
items = elements.customExplosion.items;
}
console.log(items)
if(!items.includes("EX:")){
elements.customExplosion.behavior = [["XX", "XX", "XX"], ["XX", `EX:4>${items}`, "XX"], ["XX", "XX", "XX"]]
} else{
elements.customExplosion.behavior = [["XX", "XX", "XX"], ["XX", items, "XX"], ["XX", "XX", "XX"]]
}
}
}

View File

@ -1,4 +1,100 @@
//This mod was made by Alex the transfem, https://discord.com/users/778753696804765696 on discord and https://www.tiktok.com/@alextheagenenby?_t=8hoCVI3NRhu&_r=1 on tiktok. //This mod was made by Alex the transfem, https://discord.com/users/778753696804765696 on discord and https://www.tiktok.com/@alextheagenenby?_t=8hoCVI3NRhu&_r=1 on tiktok.
function reactPixels(pixel1,pixel2) {
var r = elements[pixel1.element].reactions[pixel2.element];
if (r.setting && settings[r.setting]===0) {
return false;
}
// r has the attribute "y" which is a range between two y values
// r.y example: [10,30]
// return false if y is defined and pixel1's y is not in the range
if (r.tempMin !== undefined && pixel1.temp < r.tempMin) {
return false;
}
if (r.tempMax !== undefined && pixel1.temp > r.tempMax) {
return false;
}
if (r.burning1 !== undefined && Boolean(pixel1.burning) !== r.burning1) {
return false;
}
if (r.burning2 !== undefined && Boolean(pixel2.burning) !== r.burning2) {
return false;
}
if (r.charged && !pixel.charge) {
return false;
}
if (r.chance !== undefined && Math.random() > r.chance) {
return false;
}
if (r.y !== undefined && (pixel1.y < r.y[0] || pixel1.y > r.y[1])) {
return false;
}
if (r.elem1 !== undefined) {
// if r.elem1 is an array, set elem1 to a random element from the array, otherwise set it to r.elem1
if (Array.isArray(r.elem1)) {
var elem1 = r.elem1[Math.floor(Math.random() * r.elem1.length)];
if(elem1 == "customExplosion"){
if(r.items !== undefined){
elements.customExplosion.rItems = r.items
} else{
return false;
}
}
} else {
var elem1 = r.elem1;
if(elem1 == "customExplosion"){
if(r.items !== undefined){
elements.customExplosion.rItems = r.items
} else{
return false;
}
}
}
if (elem1 == null) {
deletePixel(pixel1.x,pixel1.y);
}
else {
changePixel(pixel1,elem1);
}
}
if (r.charge1) { pixel1.charge = r.charge1; }
if (r.temp1) { pixel1.temp += r.temp1; pixelTempCheck(pixel1); }
if (r.color1) { // if it's a list, use a random color from the list, else use the color1 attribute
pixel1.color = pixelColorPick(pixel1, Array.isArray(r.color1) ? r.color1[Math.floor(Math.random() * r.color1.length)] : r.color1);
}
if (r.attr1) { // add each attribute to pixel1
for (var key in r.attr1) {
pixel1[key] = r.attr1[key];
}
}
if (r.elem2 !== undefined) {
// if r.elem2 is an array, set elem2 to a random element from the array, otherwise set it to r.elem2
if (Array.isArray(r.elem2)) {
var elem2 = r.elem2[Math.floor(Math.random() * r.elem2.length)];
} else { var elem2 = r.elem2; }
if (elem2 == null) {
deletePixel(pixel2.x,pixel2.y);
}
else {
changePixel(pixel2,elem2);
}
}
if (r.charge2) { pixel2.charge = r.charge2; }
if (r.temp2) { pixel2.temp += r.temp2; pixelTempCheck(pixel2); }
if (r.color2) { // if it's a list, use a random color from the list, else use the color2 attribute
pixel2.color = pixelColorPick(pixel2, Array.isArray(r.color2) ? r.color2[Math.floor(Math.random() * r.color2.length)] : r.color2);
}
if (r.attr2) { // add each attribute to pixel2
for (var key in r.attr2) {
pixel2[key] = r.attr2[key];
}
}
if (r.func) { r.func(pixel1,pixel2); }
return r.elem1!==undefined || r.elem2!==undefined;
}
let obj = {};
obj.items = "";
elements.sodiumhydroxide = { elements.sodiumhydroxide = {
color: "#c9c5b1", color: "#c9c5b1",
behavior: behaviors.LIQUID, behavior: behaviors.LIQUID,
@ -26,7 +122,7 @@ elements.sodiumhydroxide = {
state: "liquid", state: "liquid",
density: 2130, density: 2130,
stain: -0.25, stain: -0.25,
name: "Sodium Hydroxide", name: "SodiumHydroxide",
stateHigh: "sodiumhydroxidecrystals", stateHigh: "sodiumhydroxidecrystals",
tempHigh: "1388", tempHigh: "1388",
} }
@ -54,7 +150,7 @@ elements.sodiumhydroxidecrystals = {
category: "powders", category: "powders",
state: "powder", state: "powder",
density: 2130, density: 2130,
name: "Sodium Hydroxide Crystals", name: "SodiumHydroxideCrystals",
} }
elements.sodium.reactions = { elements.sodium.reactions = {
@ -129,7 +225,7 @@ elements.molten_magnesium = {
category: "states", category: "states",
state: "liquid", state: "liquid",
density: 1740, density: 1740,
name: "Molten Magnesium", name: "MoltenMagnesium",
temp: 650, temp: 650,
stateLow: "magnesium", stateLow: "magnesium",
tempLow: 600 tempLow: 600
@ -148,7 +244,7 @@ elements.acidic_water = {
category: "liquids", category: "liquids",
state: "liquid", state: "liquid",
density: 1000, density: 1000,
name: "Acid Water", name: "AcidWater",
} }
elements.acid.ignore.push("magnesium"); elements.acid.ignore.push("magnesium");
elements.acid.ignore.push("sodiumhydroxide"); elements.acid.ignore.push("sodiumhydroxide");
@ -253,7 +349,7 @@ elements.chloroauric_acid = {
behavior: behaviors.POWDER, behavior: behaviors.POWDER,
category: "powders", category: "powders",
state: "solid", state: "solid",
name: "Chloroauric Acid", name: "ChloroauricAcid",
color: "#ba7b00", color: "#ba7b00",
tempHigh: 60, tempHigh: 60,
stateHigh: "liquid_chloroauric_acid", stateHigh: "liquid_chloroauric_acid",
@ -262,7 +358,7 @@ elements.liquid_chloroauric_acid = {
behavior: behaviors.LIQUID, behavior: behaviors.LIQUID,
category: "states", category: "states",
state: "liquid", state: "liquid",
name: "Liquid Chloroauric Acid", name: "LiquidChloroauricAcid",
color: "#ba7b00", color: "#ba7b00",
reactions: { reactions: {
"sodiumhydroxide": { "elem2": "gold", "elem1": ["water", "pop", "pop", "fire", "fire"], }, "sodiumhydroxide": { "elem2": "gold", "elem1": ["water", "pop", "pop", "fire", "fire"], },
@ -279,7 +375,7 @@ elements.nitrogen_oxide = {
behavior: behaviors.GAS, behavior: behaviors.GAS,
category: "gases", category: "gases",
state: "gas", state: "gas",
name: "Nitrogen Oxide", name: "NitrogenOxide",
color: "#961400", color: "#961400",
reactions: { reactions: {
"water": { "elem1": null, "elem2": "nitric_acid", }, "water": { "elem1": null, "elem2": "nitric_acid", },
@ -289,7 +385,7 @@ elements.nitric_acid = {
behavior: behaviors.LIQUID, behavior: behaviors.LIQUID,
category: "liquids", category: "liquids",
state: "liquid", state: "liquid",
name: "Nitric Acid", name: "NitricAcid",
color: "#ffffff", color: "#ffffff",
reactions: { "acid": { "elem1": null, "elem2": "aqua_regia",}, }, reactions: { "acid": { "elem1": null, "elem2": "aqua_regia",}, },
} }
@ -413,13 +509,13 @@ elements.aqua_regia = {
"state": "liquid", "state": "liquid",
"density": 1049, "density": 1049,
"stain": -0.1, "stain": -0.1,
name: "Aqua Regia", name: "AquaRegia",
"alias": "HCl + HN03", "alias": "HCl + HN03",
"movable": true, "movable": true,
"color": "#ffdd9b", "color": "#ffdd9b",
} }
elements.potassium = { elements.potassium = {
behavior: behaviors.SOLID, behavior: behaviors.POWDER,
color: ["#545454", "#737373", "#7d7d7d", "#8f8f8f"], color: ["#545454", "#737373", "#7d7d7d", "#8f8f8f"],
"category": "solids", "category": "solids",
"state": "solid", "state": "solid",
@ -460,7 +556,7 @@ elements.potassiumhydroxide = {
state: "liquid", state: "liquid",
density: 2130, density: 2130,
stain: -0.25, stain: -0.25,
name: "Potassium Hydroxide", name: "PotassiumHydroxide",
stateHigh: "potassiumhydroxidecrystals", stateHigh: "potassiumhydroxidecrystals",
tempHigh: "1388", tempHigh: "1388",
} }
@ -488,10 +584,10 @@ elements.potassiumhydroxidecrystals = {
category: "powders", category: "powders",
state: "powder", state: "powder",
density: 2130, density: 2130,
name: "Potassium Hydroxide Crystals", name: "PotassiumHydroxideCrystals",
} }
elements.supercooler = { elements.supercooler = {
name: "Super Cooler", name: "SuperCooler",
category: "machines" category: "machines"
} }
elements.supercooler.behavior = [["XX","CO:10","XX"],["CO:10","XX","CO:10"],["XX","CO:10","XX"]] elements.supercooler.behavior = [["XX","CO:10","XX"],["CO:10","XX","CO:10"],["XX","CO:10","XX"]]
@ -506,7 +602,7 @@ elements.iron_chloride = {
state: "solid", state: "solid",
density: 1740, density: 1740,
burnTime: 500, burnTime: 500,
name: "Iron Chloride", name: "IronChloride",
} }
elements.aluminum_chloride = { elements.aluminum_chloride = {
color: ["#faff61", "#f7f7e4", "#ffffb5"], color: ["#faff61", "#f7f7e4", "#ffffb5"],
@ -518,7 +614,7 @@ elements.aluminum_chloride = {
state: "solid", state: "solid",
density: 1740, density: 1740,
burnTime: 500, burnTime: 500,
name: "Aluminum Chloride", name: "AluminumChloride",
} }
elements.zinc_chloride = { elements.zinc_chloride = {
color: ["#faff61", "#f7f7e4", "#ffffb5"], color: ["#faff61", "#f7f7e4", "#ffffb5"],
@ -531,7 +627,7 @@ elements.zinc_chloride = {
state: "solid", state: "solid",
density: 1740, density: 1740,
burnTime: 500, burnTime: 500,
name: "Zinc Chloride", name: "ZincChloride",
} }
elements.acid.ignore.push("zinc"); elements.acid.ignore.push("zinc");
elements.acid.ignore.push("iron"); elements.acid.ignore.push("iron");
@ -542,5 +638,46 @@ elements.acid.ignore.push("aluminum_chloride");
elements.kilonova = { elements.kilonova = {
name: "Kilonova", name: "Kilonova",
category: "energy", category: "energy",
maxSize: 1,
temp: 100000000,
} }
elements.kilonova.behavior = [ ["XX","XX","XX"],["XX","EX:80>plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,explosion,explosion,explosion,molten_gold,molten_uranium,molten_lead,oxygen,molten_sodium,neon,chlorine,molten_calcium,molten_nickel,molten_copper,molten_zinc,gallium_gas,molten_silver,hydrogen,helium,nitrogen,nitrogen_oxide,water AND CH:void","XX"],["XX","XX","XX"]] elements.supernova.behavior = [ ["XX", "XX", "XX"], [ "XX", "EX:80>plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,molten_iron,molten_uranium,oxygen,molten_sodium,sulfur_gas,neon,chlorine,molten_calcium,molten_nickel,molten_copper,molten_zinc,gallium_gas AND CH:NeutronStar", "XX" ], ["XX", "XX", "XX"] ]
elements.kilonova.behavior = [ ["XX", "XX", "XX"], [ "XX", "EX:200>plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,molten_iron,molten_uranium,molten_lead,oxygen,molten_sodium,molten_gold,molten_tungsten,sulfur_gas,neon,chlorine,molten_calcium,molten_nickel,molten_copper,molten_zinc,gallium_gas AND CH:void", "XX" ], ["XX", "XX", "XX"] ]
elements.NeutronStar = {
behavior: [["XX", "XX", "XX"], ["CR:light", "XX", "CR:light"], ["XX", "XX", "XX"]],
name: "NeutronStar",
category: "energy",
maxSize: 1,
color: "#ffffff",
temp: 1000000000,
tempLow: -100,
insulate: true,
noMix: true,
movable: false,
stateLow: "kilonova",
reactions: {
"NeutronStar": { "elem1": "kilonova", "temp1": 100000000, },
},
}
elements.acid.ignore.push("pipe");
elements.acid.ignore.push("gold");
elements.acid.ignore.push("gold_coin");
if(enabledMods.includes("mods/nousersthings.js")) {
elements.acid.ignore.push("filter");
}
if(!enabledMods.includes("mods/customexplosion.js")){
alert("This mod needs customexplosion.js to work. Without enabling it you may run into some issues, Please enable it in the mods menu.");
}
elements.NaK = {
behavior: behaviors.LIQUID,
category: "liquids",
state: "liquid",
alias: "Sodium-Potassium alloy",
color: "#848484",
reactions: {
"water": {
elem1: "customExplosion", items: "EX:6>fire,fire,hydrogen,pop,sodiumhydroxide,potassiumhydroxide",
}
},
};

View File

@ -1,6 +1,6 @@
elements.caesium = { elements.caesium = {
color: ["#917921", "#ebcb59", "#a48b2d", "#d6b84c"], color: ["#917921", "#ebcb59", "#a48b2d", "#d6b84c"],
behavior: behaviors.SOLID, behavior: behaviors.WALL,
category: "solids", category: "solids",
state: "solid", state: "solid",
tempHigh: 28.44, tempHigh: 28.44,
@ -297,7 +297,7 @@ elements.clone_powder.ignore = eLists.CLONERS;
elements.floating_cloner.ignore = eLists.CLONERS; elements.floating_cloner.ignore = eLists.CLONERS;
elements.roomtemper = { elements.roomtemper = {
color: "#29632f", color: "#29632f",
behavior: behaviors.SOLID, behavior: behaviors.WALL,
tick: function(pixel) { tick: function(pixel) {
for (var i = 0; i < squareCoords.length; i++) { for (var i = 0; i < squareCoords.length; i++) {
var coord = squareCoords[i]; var coord = squareCoords[i];
@ -319,10 +319,11 @@ elements.roomtemper = {
category:"machines", category:"machines",
state:"solid", state:"solid",
insulate: true, insulate: true,
noMix: true,
}, },
elements.destroyable_roomtemper = { elements.destroyable_roomtemper = {
color: "#18401a", color: "#18401a",
behavior: behaviors.SOLID, behavior: behaviors.WALL,
tick: function(pixel) { tick: function(pixel) {
for (var i = 0; i < squareCoords.length; i++) { for (var i = 0; i < squareCoords.length; i++) {
var coord = squareCoords[i]; var coord = squareCoords[i];
@ -348,10 +349,11 @@ elements.destroyable_roomtemper = {
tempLow: -200, tempLow: -200,
stateLow: ["ice", "iron"], stateLow: ["ice", "iron"],
breakInto: ["snow","metal_scrap"], breakInto: ["snow","metal_scrap"],
noMix: true,
}, },
elements.customtemper = { elements.customtemper = {
color: "#421b6b", color: "#421b6b",
behavior: behaviors.SOLID, behavior: behaviors.WALL,
tick: function(pixel) { tick: function(pixel) {
for (var i = 0; i < squareCoords.length; i++) { for (var i = 0; i < squareCoords.length; i++) {
var coord = squareCoords[i]; var coord = squareCoords[i];
@ -373,10 +375,11 @@ elements.customtemper = {
category:"machines", category:"machines",
state:"solid", state:"solid",
insulate: true, insulate: true,
noMix: true,
}, },
elements.destroyable_customtemper = { elements.destroyable_customtemper = {
color: "#261047", color: "#261047",
behavior: behaviors.SOLID, behavior: behaviors.WALL,
tick: function(pixel) { tick: function(pixel) {
for (var i = 0; i < squareCoords.length; i++) { for (var i = 0; i < squareCoords.length; i++) {
var coord = squareCoords[i]; var coord = squareCoords[i];
@ -399,6 +402,7 @@ elements.destroyable_customtemper = {
state:"solid", state:"solid",
insulate: true, insulate: true,
breakInto: ["snow","metal_scrap","oxidized_copper","wire"], breakInto: ["snow","metal_scrap","oxidized_copper","wire"],
noMix: true,
}, },
elements.e_pipe = { elements.e_pipe = {
color: "#414c4f", color: "#414c4f",
@ -1227,4 +1231,86 @@ elements.filter = {
category: "machines", category: "machines",
movable: false, movable: false,
canContain: true, canContain: true,
} noMix: true,
},
elements.heat_test = {
color: "#787878",
behavior: behaviors.WALL,
category: "solids",
state: "solid",
tempHigh: 1538,
stateHigh: "molten_iron",
tick: function(pixel){
if (pixel.start == pixelTicks){
pixel.ogR = parseInt(pixel.color.slice(4, pixel.color.indexOf(',')), 10)
pixel.ogG = parseInt(pixel.color.slice(pixel.color.indexOf(',') + 1, pixel.color.lastIndexOf(',')), 10)
pixel.ogB = parseInt(pixel.color.slice(pixel.color.lastIndexOf(',') + 1, -1), 10)
}else if (pixelTicks > pixel.start){
if (pixel.temp <= (elements.heat_test.tempHigh) - 700){ // replace 700 with lower limit of range
pixel.ctemp = 0;
} else if (pixel.temp > (elements.heat_test.tempHigh)-700 && pixel.temp <= elements.heat_test.tempHigh){ // replace 700 with lower limit of range
pixel.ctemp = ((1/700)*pixel.temp)-(((elements.heat_test.tempHigh)-700)/700) // replace 700 with lower limit of range
}
if (pixel.ctemp <= 0.5){
pixel.newR = (((510-(2*pixel.ogR))*pixel.ctemp)+pixel.ogR);
pixel.newG = ((0-((2*pixel.ogG)*pixel.ctemp))+pixel.ogG);
pixel.newB = ((0-((2*pixel.ogB)*pixel.ctemp))+pixel.ogB);
}else if (pixel.ctemp > 0.5){
pixel.newR = 255;
pixel.newG = ((510*pixel.ctemp)-256);
pixel.newB= ((280*pixel.ctemp)-140);
}
pixel.color = "rgb(" + pixel.newR + "," + pixel.newG + "," + pixel.newB + ")";
}
},
},
elements.soup = {
color: "#3d2812",
behavior: behaviors.LIQUID,
category: "food",
tempHigh: 100,
stateHigh: "steam",
onMix: function(soup,ingredient) {
if (elements[ingredient.element].isFood && elements[ingredient.element].id !== elements.soup.id && elements[ingredient.element].id !== elements.broth.id) {
var rgb1 = soup.color.match(/\d+/g);
var rgb2 = ingredient.color.match(/\d+/g);
// average the colors
var rgb = [
Math.round((parseInt(rgb1[0])+parseInt(rgb2[0]))/2),
Math.round((parseInt(rgb1[1])+parseInt(rgb2[1]))/2),
Math.round((parseInt(rgb1[2])+parseInt(rgb2[2]))/2)
];
changePixel(ingredient, "soup")
// convert rgb to hex
var hex = RGBToHex(rgb);
soup.color = pixelColorPick(soup, hex);
// 50% change to delete ingredient
if (Math.random() < 0.5) { deletePixel(ingredient.x, ingredient.y); }
else {
ingredient.color = pixelColorPick(ingredient, hex);
}
}
},
density: 1100,
stain: 0.02,
state: "liquid",
},
elements.broth.onMix = function(pixel){
changePixel(pixel, "soup")
}//,
//elements.portal_in = {
// color: "#FFA000",
// behavior: behaviors.WALL,
// tick: function(pixel) {
// },
// category: "machines",
// state: "solid",
//},
//elements.portal_out = {
// color: "#0000FF",
// behavior: behaviors.WALL,
// tick: function(pixel) {
// },
// category: "machines",
// state: "solid",
//}

View File

@ -6,10 +6,12 @@ elements.legendary_energy = {
"XX|EX:90>plasma,plasma,plasma,plasma,radon,radon,radon,radon,radon,radon,molten_iron,molten_uranium,legendary_energy AND CH:light|XX", "XX|EX:90>plasma,plasma,plasma,plasma,radon,radon,radon,radon,radon,radon,molten_iron,molten_uranium,legendary_energy AND CH:light|XX",
"XX|XX|XX", "XX|XX|XX",
], ],
temp: 99999999700, temp: 9869,
tempLow: 6382,
stateLow: "liquid_legend",
category: "energy", category: "energy",
state: "gas", state: "gas",
density: 1000, density: 3000,
hardness: 1, hardness: 1,
excludeRandom: true, excludeRandom: true,
noMix: true, noMix: true,
@ -27,7 +29,9 @@ elements.liquid_legend = {
"M2|EX:15>radon,radon,legendary_energy,liquid_legend%0.4 AND DL%0.2|M2", "M2|EX:15>radon,radon,legendary_energy,liquid_legend%0.4 AND DL%0.2|M2",
"M1|M1|M1", "M1|M1|M1",
], ],
temp: 300, temp: 6382,
tempHigh: 9869,
stateHigh: "legendary_energy",
category: "liquids", category: "liquids",
state: "liquid", state: "liquid",
density: 2000, density: 2000,
@ -37,17 +41,29 @@ elements.liquid_legend = {
"void": { "elem1": "light", "elm2": null }, "void": { "elem1": "light", "elm2": null },
}, },
}, },
elements.wine = {
name: "wine",
color: "#f02263",
behavior: behaviors.LIQUID,
temp: 30,
category: "liquids",
state: "liquid",
density: 20,
excludeRandom: true,
},
if (enabledMods.includes("bananas.js")) {
runAfterLoad(function() { runAfterLoad(function() {
if(enabledMods.includes("bananas.js")) {
elements.banana_juice = { elements.banana_juice = {
name: "banana juice", name: "banana juice",
color: "#e0f542", color: "#e0f542",
behavior: behaviors.LIQUID, behavior: behaviors.LIQUID,
temp: 800, temp: 800,
category: "food", category: "liquids",
state: "liquid", state: "liquid",
density: 200, density: 20,
excludeRandom: true, excludeRandom: true,
} }
} }
}); )};