2022-01-17 10:36:40 -05:00
|
|
|
// behaviors
|
|
|
|
|
behaviors.POISONED_LIQUID = [
|
|
|
|
|
"XX|DL:"+eLists.ANIMAL+"|XX",
|
|
|
|
|
"DL:"+eLists.ANIMAL+" AND M2|XX|DL:"+eLists.ANIMAL+" AND M2",
|
|
|
|
|
"M1|DL:"+eLists.ANIMAL+" AND M1|M1",
|
|
|
|
|
];
|
|
|
|
|
behaviors.POISONED_WALL = [
|
|
|
|
|
"XX|DL:"+eLists.ANIMAL+"|XX",
|
|
|
|
|
"DL:"+eLists.ANIMAL+"|XX|DL:"+eLists.ANIMAL+"",
|
|
|
|
|
"XX|DL:"+eLists.ANIMAL+"|XX",
|
|
|
|
|
];
|
|
|
|
|
behaviors.POISONED_POWDER = [
|
|
|
|
|
"XX|DL:"+eLists.ANIMAL+"|XX",
|
|
|
|
|
"DL:"+eLists.ANIMAL+"|XX|DL:"+eLists.ANIMAL+"",
|
|
|
|
|
"M2|DL:"+eLists.ANIMAL+" AND M1|M2",
|
|
|
|
|
];
|
|
|
|
|
behaviors.POISONED_GAS = [
|
|
|
|
|
"M2|DL:"+eLists.ANIMAL+" AND M1|M2",
|
|
|
|
|
"DL:"+eLists.ANIMAL+" AND M1|XX|DL:"+eLists.ANIMAL+" AND M1",
|
|
|
|
|
"M2|DL:"+eLists.ANIMAL+" AND M1|M2",
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// changing ketchup
|
|
|
|
|
elements.ketchup.tempLow = -3;
|
|
|
|
|
elements.ketchup.stateLow = "frozen_ketchup";
|
|
|
|
|
elements.ketchup.tempHigh = 100;
|
|
|
|
|
elements.ketchup.stateHigh = "ketchup_gas";
|
|
|
|
|
elements.ketchup.density = 1092;
|
2024-06-27 23:28:58 -04:00
|
|
|
elements.ketchup.reactions ??= {};
|
|
|
|
|
elements.ketchup.reactions.mayonnaise = { "elem1": null, "elem2": "fry_sauce" };
|
|
|
|
|
elements.ketchup.reactions.plague = { "elem1": "poisoned_ketchup", "elem2": null};
|
|
|
|
|
elements.ketchup.reactions.infection = { "elem1": "poisoned_ketchup", "elem2": null};
|
|
|
|
|
elements.ketchup.reactions.fallout = { "elem1": "poisoned_ketchup", "chance":25};
|
|
|
|
|
elements.ketchup.reactions.gloomwind = { "elem1": "poisoned_ketchup", "elem2": null};
|
2022-01-17 10:36:40 -05:00
|
|
|
|
2022-01-20 15:13:06 -05:00
|
|
|
// making ketchup dirty
|
2024-06-27 23:28:58 -04:00
|
|
|
elements.dirt.reactions ??= {};
|
|
|
|
|
elements.dirt.reactions.ketchup = { "elem1": null, "elem2": "dirty_ketchup", "oneway":true};
|
|
|
|
|
elements.ash.reactions ??= {};
|
|
|
|
|
elements.ash.reactions.ketchup = { "elem1": null, "elem2": "dirty_ketchup", "oneway":true};
|
|
|
|
|
elements.dust.reactions ??= {};
|
|
|
|
|
elements.dust.reactions.ketchup = { "elem1": null, "elem2": "dirty_ketchup", "oneway":true};
|
2022-01-20 15:13:06 -05:00
|
|
|
|
2023-08-24 01:04:05 -04:00
|
|
|
// pyrocumulus reactions
|
|
|
|
|
elements.smoke.reactions.ketchup_cloud = { "elem1": "pyrocumulus", "chance":0.08, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
elements.smoke.reactions.poisoned_ketchup_cloud = { "elem1": "pyrocumulus", "chance":0.08, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
elements.smoke.reactions.ketchup_snow_cloud = { "elem1": "pyrocumulus", "chance":0.08, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
elements.smoke.reactions.poisoned_ketchup_snow_cloud = { "elem1": "pyrocumulus", "chance":0.08, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
elements.smoke.reactions.ketchup_rain_cloud = { "elem1": "pyrocumulus", "chance":0.08, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
elements.smoke.reactions.poisoned_ketchup_rain_cloud = { "elem1": "pyrocumulus", "chance":0.08, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
elements.ash.reactions.ketchup_cloud = { "elem1": "pyrocumulus", "chance":0.08, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
elements.ash.reactions.poisoned_ketchup_cloud = { "elem1": "pyrocumulus", "chance":0.08, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
elements.ash.reactions.ketchup_snow_cloud = { "elem1": "pyrocumulus", "chance":0.08, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
elements.ash.reactions.poisoned_ketchup_snow_cloud = { "elem1": "pyrocumulus", "chance":0.08, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
elements.ash.reactions.ketchup_rain_cloud = { "elem1": "pyrocumulus", "chance":0.08, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
elements.ash.reactions.poisoned_ketchup_rain_cloud = { "elem1": "pyrocumulus", "chance":0.08, "y":[0,15], "setting":"clouds" },
|
2023-08-23 00:00:31 -04:00
|
|
|
|
|
|
|
|
// fixing radiation reactions
|
2023-08-24 01:04:05 -04:00
|
|
|
elements.radiation.reactions.ketchup = { "elem1": null, "elem2": "poisoned_ketchup", "chance":25}
|
2022-01-20 15:13:06 -05:00
|
|
|
|
2022-01-17 10:36:40 -05:00
|
|
|
// elements
|
|
|
|
|
elements.frozen_ketchup = {
|
|
|
|
|
color: "#d44737",
|
|
|
|
|
behavior: behaviors.WALL,
|
2023-08-24 01:04:05 -04:00
|
|
|
temp: -5,
|
2022-01-17 10:36:40 -05:00
|
|
|
category:"solids",
|
2023-08-24 01:04:05 -04:00
|
|
|
tempHigh: 5,
|
2022-01-17 10:36:40 -05:00
|
|
|
stateHigh: "ketchup",
|
|
|
|
|
state: "solid",
|
|
|
|
|
density: 917,
|
|
|
|
|
reactions: {
|
|
|
|
|
"plague": { "elem1": "frozen_poisoned_ketchup", "elem2": null},
|
2022-01-20 15:13:06 -05:00
|
|
|
"infection": { "elem1": "frozen_poisoned_ketchup", "elem2": null},
|
2023-08-24 01:04:05 -04:00
|
|
|
"radiation": { "elem1": "frozen_poisoned_ketchup", "chance":25},
|
|
|
|
|
"fallout": { "elem1": "frozen_poisoned_ketchup", "chance":25},
|
2022-01-20 15:13:06 -05:00
|
|
|
"gloomwind": { "elem1": "frozen_poisoned_ketchup", "elem2": null},
|
2022-01-17 10:36:40 -05:00
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
elements.poisoned_ketchup = {
|
|
|
|
|
color: "#de0030",
|
|
|
|
|
behavior: behaviors.POISONED_LIQUID,
|
|
|
|
|
tempLow: -3,
|
|
|
|
|
stateLow: "frozen_poisoned_ketchup",
|
|
|
|
|
tempHigh: 100,
|
|
|
|
|
stateHigh: "poisoned_ketchup_gas",
|
|
|
|
|
viscosity: 50000,
|
|
|
|
|
category:"liquids",
|
|
|
|
|
state: "liquid",
|
2022-01-20 15:13:06 -05:00
|
|
|
density: 1140,
|
2023-08-24 01:04:05 -04:00
|
|
|
stain: 0.05,
|
2022-01-17 10:36:40 -05:00
|
|
|
};
|
|
|
|
|
elements.frozen_poisoned_ketchup = {
|
|
|
|
|
color: "#d43754",
|
|
|
|
|
behavior: behaviors.POISONED_WALL,
|
2023-08-24 01:04:05 -04:00
|
|
|
temp: -5,
|
2022-01-17 10:36:40 -05:00
|
|
|
category:"solids",
|
2023-08-24 01:04:05 -04:00
|
|
|
tempHigh: 5,
|
2022-01-17 10:36:40 -05:00
|
|
|
stateHigh: "poisoned_ketchup",
|
|
|
|
|
state: "solid",
|
|
|
|
|
density: 917,
|
|
|
|
|
};
|
|
|
|
|
elements.ketchup_spout = {
|
|
|
|
|
color: "#944137",
|
|
|
|
|
behavior: [
|
|
|
|
|
"XX|CR:poisoned_ketchup%0.001 AND CR:ketchup|XX",
|
|
|
|
|
"CR:poisoned_ketchup%0.001 AND CR:ketchup|XX|CR:poisoned_ketchup%0.001 AND CR:ketchup",
|
|
|
|
|
"XX|CR:poisoned_ketchup%0.001 AND CR:ketchup|XX",
|
|
|
|
|
],
|
|
|
|
|
category:"special",
|
|
|
|
|
};
|
|
|
|
|
elements.ketchup_cloud = {
|
2023-08-24 01:04:05 -04:00
|
|
|
color: "#ad655c",
|
2022-01-17 10:36:40 -05:00
|
|
|
behavior: [
|
|
|
|
|
"XX|XX|XX",
|
2023-08-24 01:04:05 -04:00
|
|
|
"XX|CO:1%5|M1%2.5 AND BO",
|
|
|
|
|
"XX|XX|XX",
|
2022-01-17 10:36:40 -05:00
|
|
|
],
|
|
|
|
|
category:"gases",
|
2023-08-24 01:04:05 -04:00
|
|
|
temp: 110,
|
|
|
|
|
tempLow: 100,
|
|
|
|
|
stateLow: "ketchup_rain_cloud",
|
2022-01-17 10:36:40 -05:00
|
|
|
state: "gas",
|
2023-08-24 01:04:05 -04:00
|
|
|
density: 0.5,
|
2022-01-17 10:36:40 -05:00
|
|
|
reactions: {
|
|
|
|
|
"plague": { "elem1": "poisoned_ketchup_cloud", "elem2": null},
|
2022-01-20 15:13:06 -05:00
|
|
|
"infection": { "elem1": "poisoned_ketchup_cloud"},
|
2023-08-24 01:04:05 -04:00
|
|
|
"radiation": { "elem1": "poisoned_ketchup_cloud", "chance":25},
|
|
|
|
|
"fallout": { "elem1": "poisoned_ketchup_cloud", "chance":25},
|
2022-01-20 15:13:06 -05:00
|
|
|
"gloomwind": { "elem1": "poisoned_ketchup_cloud", "elem2": null},
|
2023-08-24 01:04:05 -04:00
|
|
|
"ketchup_rain_cloud": { "elem1":"ketchup_rain_cloud", "temp1":-20 },
|
2022-01-17 10:36:40 -05:00
|
|
|
},
|
|
|
|
|
conduct: 0.03,
|
2023-08-24 01:04:05 -04:00
|
|
|
ignoreAir: true,
|
|
|
|
|
};
|
|
|
|
|
elements.ketchup_rain_cloud = {
|
|
|
|
|
color: "#6e413b",
|
|
|
|
|
behavior: [
|
|
|
|
|
"XX|XX|XX",
|
|
|
|
|
"XX|CH:ketchup%0.05|M1%2.5 AND BO",
|
|
|
|
|
"XX|XX|XX|",
|
|
|
|
|
],
|
|
|
|
|
category: "gases",
|
|
|
|
|
temp: 70,
|
|
|
|
|
tempHigh: 100,
|
|
|
|
|
stateHigh: "ketchup_cloud",
|
|
|
|
|
tempLow: 0,
|
|
|
|
|
stateLow: "ketchup_snow_cloud",
|
|
|
|
|
state: "gas",
|
|
|
|
|
density: "0.5",
|
|
|
|
|
ignoreAir: true,
|
|
|
|
|
conduct: 0.03,
|
2022-01-17 10:36:40 -05:00
|
|
|
};
|
|
|
|
|
elements.poisoned_ketchup_cloud = {
|
2023-08-24 01:04:05 -04:00
|
|
|
color: "#a8596b",
|
|
|
|
|
behavior: [
|
|
|
|
|
"XX|XX|XX",
|
|
|
|
|
"XX|CO:1%5|M1%2.5 AND BO",
|
|
|
|
|
"XX|XX|XX",
|
|
|
|
|
],
|
|
|
|
|
reactions: {
|
|
|
|
|
"poisoned_ketchup_rain_cloud": { "elem1":"poisoned_ketchup_rain_cloud", "temp1": -20 },
|
|
|
|
|
},
|
|
|
|
|
category: "gases",
|
|
|
|
|
temp: 110,
|
|
|
|
|
tempLow: 100,
|
|
|
|
|
stateLow: "poisoned_ketchup_rain_cloud",
|
|
|
|
|
state: "gas",
|
|
|
|
|
density: 0.5,
|
|
|
|
|
conduct: 0.03,
|
|
|
|
|
ignoreAir: true,
|
|
|
|
|
};
|
|
|
|
|
elements.poisoned_ketchup_rain_cloud = {
|
2022-01-17 10:36:40 -05:00
|
|
|
color: "#633640",
|
|
|
|
|
behavior: [
|
|
|
|
|
"XX|XX|XX",
|
2023-08-24 01:04:05 -04:00
|
|
|
"XX|CH:poisoned_ketchup%0.05|M1%2.5 AND BO",
|
|
|
|
|
"XX|XX|XX",
|
2022-01-17 10:36:40 -05:00
|
|
|
],
|
2023-08-24 01:04:05 -04:00
|
|
|
category: "gases",
|
|
|
|
|
temp: 70,
|
|
|
|
|
tempHigh: 100,
|
|
|
|
|
stateHigh: "poisoned_ketchup_cloud",
|
2022-01-17 10:36:40 -05:00
|
|
|
tempLow: 0,
|
|
|
|
|
stateLow: "poisoned_ketchup_snow_cloud",
|
|
|
|
|
state: "gas",
|
2023-08-24 01:04:05 -04:00
|
|
|
density: 0.5,
|
|
|
|
|
ignoreAir: true,
|
2022-01-17 10:36:40 -05:00
|
|
|
conduct: 0.03,
|
|
|
|
|
};
|
|
|
|
|
elements.ketchup_snow = {
|
|
|
|
|
color: "#ed7a6d",
|
|
|
|
|
behavior: behaviors.POWDER,
|
2023-08-24 01:04:05 -04:00
|
|
|
temp: -5,
|
|
|
|
|
tempHigh: 18,
|
2022-01-17 10:36:40 -05:00
|
|
|
stateHigh: "ketchup",
|
2023-08-24 01:04:05 -04:00
|
|
|
category: "land",
|
2022-01-17 10:36:40 -05:00
|
|
|
state: "solid",
|
2023-08-24 01:04:05 -04:00
|
|
|
density: 100,
|
2022-01-17 10:36:40 -05:00
|
|
|
reactions: {
|
|
|
|
|
"plague": { "elem1": "poisoned_ketchup_snow", "elem2": null},
|
2022-01-20 15:13:06 -05:00
|
|
|
"infection": { "elem1": "poisoned_ketchup_snow", "elem2": null},
|
2023-08-23 00:00:31 -04:00
|
|
|
"radiation": { "elem1": "poisoned_ketchup_snow", chance:25},
|
|
|
|
|
"fallout": { "elem1": "poisoned_ketchup_snow", chance:25},
|
2022-01-20 15:13:06 -05:00
|
|
|
"gloomwind": { "elem1": "poisoned_ketchup_snow", "elem2": null},
|
2022-01-17 10:36:40 -05:00
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
elements.ketchup_snow_cloud = {
|
|
|
|
|
color: "#755652",
|
|
|
|
|
behavior: [
|
|
|
|
|
"XX|XX|XX",
|
2023-08-24 01:04:05 -04:00
|
|
|
"XX|CH:ketchup_snow%0.05|M1%2.5 AND BO",
|
2022-01-17 10:36:40 -05:00
|
|
|
"XX|XX|XX",
|
|
|
|
|
],
|
|
|
|
|
category:"gases",
|
|
|
|
|
temp: -10,
|
|
|
|
|
tempHigh: 30,
|
|
|
|
|
stateHigh: "ketchup_cloud",
|
|
|
|
|
state: "gas",
|
2023-08-24 01:04:05 -04:00
|
|
|
density: 0.55,
|
2022-01-17 10:36:40 -05:00
|
|
|
reactions: {
|
|
|
|
|
"plague": { "elem1": "poisoned_ketchup_snow_cloud", "elem2": null},
|
2022-01-20 15:13:06 -05:00
|
|
|
"infection": { "elem1": "poisoned_ketchup_snow_cloud"},
|
2023-08-23 00:00:31 -04:00
|
|
|
"radiation": { "elem1": "poisoned_ketchup_snow_cloud", chance:25},
|
|
|
|
|
"fallout": { "elem1": "poisoned_ketchup_snow_cloud", chance:25},
|
2022-01-20 15:13:06 -05:00
|
|
|
"gloomwind": { "elem1": "poisoned_ketchup_snow_cloud", "elem2": null},
|
2022-01-17 10:36:40 -05:00
|
|
|
},
|
2023-08-24 01:04:05 -04:00
|
|
|
ignoreAir: true,
|
2022-01-17 10:36:40 -05:00
|
|
|
};
|
|
|
|
|
elements.poisoned_ketchup_snow = {
|
|
|
|
|
color: "#d1697f",
|
|
|
|
|
behavior: behaviors.POISONED_POWDER,
|
2023-08-24 01:04:05 -04:00
|
|
|
temp: -5,
|
|
|
|
|
tempHigh: 18,
|
2022-01-17 10:36:40 -05:00
|
|
|
stateHigh: "poisoned_ketchup",
|
|
|
|
|
category: "land",
|
|
|
|
|
state: "solid",
|
2023-08-24 01:04:05 -04:00
|
|
|
density: 100,
|
2022-01-17 10:36:40 -05:00
|
|
|
};
|
|
|
|
|
elements.poisoned_ketchup_snow_cloud = {
|
|
|
|
|
color: "#6e4e55",
|
|
|
|
|
behavior: [
|
|
|
|
|
"XX|XX|XX",
|
2023-08-24 01:04:05 -04:00
|
|
|
"XX|CH:poisoned_ketchup_snow%0.05|M1%2.5 AND BO",
|
2022-01-17 10:36:40 -05:00
|
|
|
"XX|XX|XX",
|
|
|
|
|
],
|
|
|
|
|
category:"gases",
|
|
|
|
|
temp: -10,
|
|
|
|
|
tempHigh: 30,
|
|
|
|
|
stateHigh: "poisoned_ketchup_cloud",
|
|
|
|
|
state: "gas",
|
2023-08-24 01:04:05 -04:00
|
|
|
density: 0.55,
|
|
|
|
|
ignoreAir: true,
|
2022-01-17 10:36:40 -05:00
|
|
|
};
|
|
|
|
|
elements.mayonnaise = {
|
|
|
|
|
color: "#F2EEE9",
|
|
|
|
|
behavior: behaviors.LIQUID,
|
|
|
|
|
viscosity: 50000,
|
|
|
|
|
category:"liquids",
|
|
|
|
|
state: "liquid",
|
|
|
|
|
density: 1000,
|
2023-08-24 01:04:05 -04:00
|
|
|
stain: 0.05,
|
|
|
|
|
isFood: true,
|
2022-01-17 10:36:40 -05:00
|
|
|
};
|
|
|
|
|
elements.mustard = {
|
|
|
|
|
color: "#D8AD01",
|
|
|
|
|
behavior: behaviors.LIQUID,
|
|
|
|
|
viscosity: 50000,
|
|
|
|
|
category:"liquids",
|
|
|
|
|
state: "liquid",
|
|
|
|
|
density: 1052,
|
2023-08-24 01:04:05 -04:00
|
|
|
stain: 0.05,
|
|
|
|
|
isFood: true,
|
2022-01-17 10:36:40 -05:00
|
|
|
};
|
|
|
|
|
elements.ketchup_gas = {
|
|
|
|
|
color: "#ffb5ad",
|
|
|
|
|
behavior: behaviors.GAS,
|
2023-08-24 01:04:05 -04:00
|
|
|
temp: 150,
|
2022-01-17 10:36:40 -05:00
|
|
|
density: 0.6,
|
|
|
|
|
state: "gas",
|
2023-08-24 01:04:05 -04:00
|
|
|
tempLow: 95,
|
2022-01-17 10:36:40 -05:00
|
|
|
stateLow: "ketchup",
|
|
|
|
|
category: "gases",
|
|
|
|
|
reactions: {
|
|
|
|
|
"plague": { "elem1": "poisoned_ketchup_gas", "elem2": null},
|
2023-08-24 01:04:05 -04:00
|
|
|
"ketchup_gas": { "elem1": null, "elem2": "ketchup_cloud", "chance":0.3, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
"ketchup_cloud": { "elem1": "ketchup_cloud", "chance":0.4, "y":[0, 12], "setting":"clouds" },
|
|
|
|
|
"ketchup_rain_cloud": { "elem1": "ketchup_rain_cloud", "chance":0.4, "y":[0, 12], "setting":"clouds" },
|
2022-01-20 15:13:06 -05:00
|
|
|
"infection": { "elem1": "poisoned_ketchup_gas"},
|
2023-08-23 00:00:31 -04:00
|
|
|
"radiation": { "elem1": "poisoned_ketchup_gas", chance:25},
|
|
|
|
|
"fallout": { "elem1": "poisoned_ketchup_gas", chance:25},
|
2022-01-20 15:13:06 -05:00
|
|
|
"gloomwind": { "elem1": "poisoned_ketchup_gas", "elem2": null},
|
2022-01-17 10:36:40 -05:00
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
elements.poisoned_ketchup_gas = {
|
|
|
|
|
color: "#e096a6",
|
|
|
|
|
behavior: behaviors.POISONED_GAS,
|
2023-08-24 01:04:05 -04:00
|
|
|
temp: 150,
|
2022-01-17 10:36:40 -05:00
|
|
|
density: 0.6,
|
|
|
|
|
state: "gas",
|
2023-08-24 01:04:05 -04:00
|
|
|
tempLow: 95,
|
2022-01-17 10:36:40 -05:00
|
|
|
stateLow: "poisoned_ketchup",
|
|
|
|
|
category: "gases",
|
|
|
|
|
reactions: {
|
2023-08-24 01:04:05 -04:00
|
|
|
"poisoned_ketchup_gas": { "elem1": null, "elem2": "poisoned_ketchup_cloud", "chance":0.3, "y":[0,15], "setting":"clouds" },
|
|
|
|
|
"poisoned_ketchup_cloud": { "elem1": "poisoned_ketchup_cloud", "chance":0.4, "y":[0, 12], "setting":"clouds" },
|
|
|
|
|
"ketchup_rain_cloud": { "elem1": "poisoned_ketchup_rain_cloud", "chance":0.4, "y":[0, 12], "setting":"clouds" },
|
2022-01-17 10:36:40 -05:00
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
elements.fry_sauce = {
|
|
|
|
|
color: "#E8AA7B",
|
|
|
|
|
behavior: behaviors.LIQUID,
|
|
|
|
|
viscosity: 50000,
|
|
|
|
|
category: "liquids",
|
|
|
|
|
state: "liquid",
|
|
|
|
|
density: 1149,
|
2023-08-24 01:04:05 -04:00
|
|
|
stain: 0.05,
|
|
|
|
|
isFood: true,
|
2022-01-17 10:36:40 -05:00
|
|
|
};
|
|
|
|
|
elements.ketchup_powder = {
|
|
|
|
|
color: "#E06320",
|
|
|
|
|
behavior: behaviors.POWDER,
|
|
|
|
|
density: 1879,
|
|
|
|
|
reactions: {
|
|
|
|
|
"plague": { "elem1": "poisoned_ketchup_powder", "elem2": null},
|
2022-01-20 15:13:06 -05:00
|
|
|
"infection": { "elem1": "poisoned_ketchup_powder", "elem2": null},
|
2023-08-23 00:00:31 -04:00
|
|
|
"radiation": { "elem1": "poisoned_ketchup_powder", chance:25},
|
|
|
|
|
"fallout": { "elem1": "poisoned_ketchup_powder", chance:25},
|
2022-01-20 15:13:06 -05:00
|
|
|
"gloomwind": { "elem1": "poisoned_ketchup_powder", "elem2": null},
|
2022-01-17 10:36:40 -05:00
|
|
|
},
|
|
|
|
|
state: "solid",
|
2022-01-20 15:13:06 -05:00
|
|
|
category: "powders",
|
2023-08-24 01:04:05 -04:00
|
|
|
isFood: true,
|
2022-01-17 10:36:40 -05:00
|
|
|
};
|
|
|
|
|
elements.poisoned_ketchup_powder = {
|
|
|
|
|
color: "#e0204a",
|
|
|
|
|
behavior: behaviors.POISONED_POWDER,
|
|
|
|
|
density: 1879,
|
|
|
|
|
state: "solid",
|
2022-01-20 15:13:06 -05:00
|
|
|
category: "powders",
|
2022-01-17 10:36:40 -05:00
|
|
|
};
|
|
|
|
|
elements.cumin = {
|
|
|
|
|
color: "#8B7778",
|
|
|
|
|
behavior: behaviors.POWDER,
|
2022-01-20 15:13:06 -05:00
|
|
|
category: "food",
|
2022-01-17 10:36:40 -05:00
|
|
|
density: 405,
|
|
|
|
|
state: "solid",
|
2022-01-20 15:13:06 -05:00
|
|
|
tempHigh: 400,
|
|
|
|
|
stateHigh: "ash",
|
2022-01-17 10:36:40 -05:00
|
|
|
burn: 40,
|
|
|
|
|
burnTime: 40,
|
|
|
|
|
burnInto: "ash",
|
2023-08-24 01:04:05 -04:00
|
|
|
isFood: true,
|
2022-01-17 10:36:40 -05:00
|
|
|
};
|
|
|
|
|
elements.eketchup_spout = {
|
|
|
|
|
name: "E-Ketchup Spout",
|
|
|
|
|
color: "#c75600",
|
|
|
|
|
behavior: behaviors.WALL,
|
|
|
|
|
behaviorOn: [
|
|
|
|
|
"XX|CR:poisoned_ketchup%0.001 AND CR:ketchup|XX",
|
|
|
|
|
"CR:poisoned_ketchup%0.001 AND CR:ketchup|XX|CR:poisoned_ketchup%0.001 AND CR:ketchup",
|
|
|
|
|
"XX|CR:poisoned_ketchup%0.001 AND CR:ketchup|XX",
|
|
|
|
|
],
|
|
|
|
|
category: "machines",
|
|
|
|
|
conduct: 1,
|
|
|
|
|
insulate: true,
|
|
|
|
|
colorOn: "#fff200",
|
|
|
|
|
};
|
|
|
|
|
elements.ketchup_metal = {
|
|
|
|
|
color: "#ff5c5c",
|
|
|
|
|
behavior: behaviors.WALL,
|
|
|
|
|
category: "solids",
|
|
|
|
|
conduct: 0.47,
|
|
|
|
|
tempHigh: 1500,
|
|
|
|
|
density: 7197,
|
|
|
|
|
};
|
|
|
|
|
elements.antiketchup = {
|
|
|
|
|
color: "#00CEE6",
|
|
|
|
|
behavior: behaviors.AGLIQUID,
|
|
|
|
|
viscosity: 50000,
|
|
|
|
|
category:"special",
|
|
|
|
|
state: "liquid",
|
|
|
|
|
density: 1092,
|
2023-08-24 01:04:05 -04:00
|
|
|
stain: 0.05,
|
2022-01-17 10:36:40 -05:00
|
|
|
};
|
2022-01-20 15:13:06 -05:00
|
|
|
elements.dirty_ketchup = {
|
|
|
|
|
color: "#851a0d",
|
|
|
|
|
behavior: behaviors.LIQUID,
|
|
|
|
|
viscosity: 50000,
|
|
|
|
|
category: "liquids",
|
|
|
|
|
state: "liquid",
|
|
|
|
|
tempHigh: 100,
|
|
|
|
|
stateHigh: ["ketchup_gas", "carbon_dioxide"],
|
|
|
|
|
tempLow: 0,
|
|
|
|
|
stateLow: "frozen_ketchup",
|
|
|
|
|
density: 1140,
|
|
|
|
|
hidden: true,
|
2023-08-24 01:04:05 -04:00
|
|
|
stain: 0.05,
|
2022-01-20 15:13:06 -05:00
|
|
|
};
|
|
|
|
|
elements.ketchup_gold = {
|
|
|
|
|
color: ["#eb8a8a", "#bf3939", "#ff6161"],
|
|
|
|
|
behavior: behaviors.WALL,
|
|
|
|
|
category: "solids",
|
|
|
|
|
conduct: 0.64,
|
|
|
|
|
tempHigh: 1025,
|
|
|
|
|
density: 10598,
|
|
|
|
|
}
|
|
|
|
|
// alloys
|
|
|
|
|
elements.molten_ketchup_metal = {
|
|
|
|
|
reactions: {
|
|
|
|
|
"molten_gold": { "elem1": null, "elem2": "molten_ketchup_gold" },
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-20 19:10:30 -05:00
|
|
|
// f&m only things
|
2022-01-20 16:04:39 -05:00
|
|
|
runAfterLoad(function() {
|
|
|
|
|
if (enabledMods.includes("mods/fey_and_more.js")) {
|
2022-01-20 19:10:30 -05:00
|
|
|
// making ketchup fairies die to iron and silver
|
|
|
|
|
eLists.FAIRY.push("ketchup_fairy");
|
|
|
|
|
elements.iron.behavior = [
|
|
|
|
|
"XX|DL:"+eLists.FAIRY+"|XX",
|
|
|
|
|
"DL:"+eLists.FAIRY+"|XX|DL:"+eLists.FAIRY+"",
|
|
|
|
|
"XX|DL:"+eLists.FAIRY+"|XX"
|
|
|
|
|
];
|
|
|
|
|
elements.silver.behavior = [
|
|
|
|
|
"XX|DL:"+eLists.FAIRY+"|XX",
|
|
|
|
|
"DL:"+eLists.FAIRY+"|XX|DL:"+eLists.FAIRY+"",
|
|
|
|
|
"XX|DL:"+eLists.FAIRY+"|XX"
|
|
|
|
|
];
|
|
|
|
|
|
2022-01-20 16:04:39 -05:00
|
|
|
// ketchup fairy reaction
|
2024-06-27 23:28:58 -04:00
|
|
|
elements.fairy.reactions ??= {};
|
|
|
|
|
elements.fairy.reactions.ketchup = { "elem1": "ketchup_fairy"};
|
2022-01-20 19:10:30 -05:00
|
|
|
|
|
|
|
|
// f&m only elements
|
2022-01-20 16:04:39 -05:00
|
|
|
elements.ketchup_fairy = {
|
|
|
|
|
color: ["#d4b0b0", "#e8c5c5", "#e89595"],
|
|
|
|
|
state: "solid",
|
|
|
|
|
behavior: [
|
|
|
|
|
"XX|M1|M1",
|
|
|
|
|
"XX|FX%5|XX",
|
|
|
|
|
"XX|CR:ketchup%0.1 AND CR:fairy_dust%0.005 AND M1|M1",
|
|
|
|
|
],
|
|
|
|
|
category: "fey",
|
2022-01-20 19:10:30 -05:00
|
|
|
};
|
2022-01-20 15:41:15 -05:00
|
|
|
};
|
2022-01-20 16:04:39 -05:00
|
|
|
});
|
2022-01-17 10:36:40 -05:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
Changelog
|
2023-08-23 00:00:31 -04:00
|
|
|
Mod made by Nubo318. Contributors include DeviantEquinox and An Orbit.
|
2023-08-24 01:04:05 -04:00
|
|
|
Version 1.3.3
|
|
|
|
|
|
|
|
|
|
Version 1.3.3 (23rd of August 2023)
|
|
|
|
|
+ All liquids added on this mod can now stain stuff, with the exception of molten metals
|
|
|
|
|
+ Certain elements can now be mixed with dough and batter
|
|
|
|
|
~ Fixed reactions that turned clouds into pyrocumulus when in contact with with smoke or ash
|
|
|
|
|
~ Optimized the way in which new reactions of vanilla elements are coded
|
|
|
|
|
~ Changed the initial temperature of multiple elements
|
|
|
|
|
~ Fixed a bug that caused Ketchup Snow and its poisoned variant to not display their info properly
|
|
|
|
|
~ Ketchup clouds now work more similarly to vanilla clouds
|
2023-08-23 00:00:31 -04:00
|
|
|
|
|
|
|
|
Version 1.3.2 (22nd of August 2023)
|
|
|
|
|
- Removed some elements due to their inclusion or some form of it in the vanilla game, including:
|
|
|
|
|
- Tomato
|
|
|
|
|
- Tomato Sauce
|
|
|
|
|
- Sugary Tomato Sauce
|
|
|
|
|
- Removed a vanilla reaction which turned ketchup into sauce when exposed to radiation
|
2022-01-20 19:10:30 -05:00
|
|
|
|
|
|
|
|
Version 1.3.1 (20th of January 2022)
|
|
|
|
|
~ Ketchup fairies are now killed by iron and silver
|
2022-01-20 15:13:06 -05:00
|
|
|
|
|
|
|
|
Version 1.3.0 (20th of January 2022)
|
|
|
|
|
+ Ketchup Gold, an alloy between ketchup metal and gold
|
|
|
|
|
+ Dirty Ketchup
|
|
|
|
|
+ Ketchup clouds can now react with smoke to form pyrocumulus
|
|
|
|
|
+ Infection now poisons ketchup stuff
|
|
|
|
|
+ Tomatoes and cumin now turn into ash at high temperatures
|
|
|
|
|
+ Radiation can poison ketchup stuff
|
|
|
|
|
+ Ketchup Fairies (Needs Fey & More)
|
|
|
|
|
+ Gloomwind can poison ketchup stuff (Needs Fey & More)
|
|
|
|
|
~ Changed the density of poisoned ketchup
|
|
|
|
|
~ Moved the ketchup powders to the "Powders" category and tomatoes and cumin to the "Food" category
|
2022-01-17 10:36:40 -05:00
|
|
|
|
|
|
|
|
Version 1.2.1 (16th of January 2022)
|
|
|
|
|
+ Ketchup gases can now form ketchup clouds when high up
|
|
|
|
|
~ Moved ketchup clouds to gases category
|
|
|
|
|
~ E-Ketchup Spout now has the id eketchup_spout, though remains called E-Ketchup Spout
|
|
|
|
|
~ Updated to Sandboxels 0.9
|
|
|
|
|
~ Now used with the in-game mod manager
|
|
|
|
|
|
|
|
|
|
Version 1.2.0 (10th of January 2022)
|
|
|
|
|
+ Ketchup Gas + a poisoned variant
|
|
|
|
|
+ Fry Sauce
|
|
|
|
|
+ Combining mayonnaise and ketchup creates fry sauce
|
|
|
|
|
+ Ketchup Powder + a poisoned variant
|
|
|
|
|
+ Tomatos and Tomato Sauce
|
|
|
|
|
+ Smashing tomatos with rocks creates tomato sauce
|
|
|
|
|
+ Tomato sauce can be combined with sugar to make sugary tomato sauce, which can then be combined with vinegar to make ketchup
|
|
|
|
|
+ Cumin
|
|
|
|
|
+ Combining plague with ketchup stuff changes it to its poisoned variant
|
|
|
|
|
+ E-Ketchup Spout, a ketchup spout that works only with electricity
|
|
|
|
|
+ Ketchup Metal
|
|
|
|
|
+ Antiketchup
|
|
|
|
|
~ Made the density of ketchup more accurate (hopefully).
|
|
|
|
|
~ Updated to Sandboxels 0.8.2
|
|
|
|
|
~ Poisoned stuff doesn't kill diagonally anymore
|
|
|
|
|
~ Technical: Element properties don't use quotation marks anymore.
|
|
|
|
|
|
|
|
|
|
Version 1.1.0 (6th of January 2022)
|
|
|
|
|
+ Ketchup Snow (+poisoned and cloud variants)
|
|
|
|
|
+ Mayonnaise
|
|
|
|
|
+ Mustard
|
|
|
|
|
~ Fixed: Ketchup can now freeze again
|
|
|
|
|
|
|
|
|
|
Version 1.0.1 (6th of January 2022)
|
|
|
|
|
~ Updated to Sandboxels 0.8.1
|
|
|
|
|
~ Frozen ketchup and frozen poisoned ketchup now starth with a temperature of 0°C
|
|
|
|
|
|
|
|
|
|
Version 1.0.0 (technically not the first version, but I'm to lazy to see in which order we added these things)
|
|
|
|
|
+ Frozen Ketchup
|
|
|
|
|
+ Ketchup Spout - Water spout but ketchup, also has a 0.001% chance of spawning poisoned ketchup because why not.
|
|
|
|
|
+ Poisoned Ketchup - Ketchup that kills animals
|
|
|
|
|
+ Frozen Poisoned Ketchup
|
|
|
|
|
+ Ketchup Cloud - Rain cloud but ketchup
|
|
|
|
|
+ Poisoned Ketchup Cloud
|
2024-06-27 23:28:58 -04:00
|
|
|
*/
|