41 lines
1023 B
JavaScript
41 lines
1023 B
JavaScript
// This is how to add a new mod to the game.
|
|
|
|
// Create a new Javascript file like this one.
|
|
// Add the file to the mods folder on GitHub, or host it somewhere else.
|
|
// https://github.com/slweeb/sandboxels/tree/main/mods
|
|
|
|
// To add it in the Mod Loader:
|
|
// If it is in the mods folder, you can just use the name of the file.
|
|
// If it is hosted somewhere else, you can use the full URL, including the HTTPS://.
|
|
|
|
// Adding elements:
|
|
elements.mayo = {
|
|
color: "#ffffff",
|
|
behavior: behaviors.LIQUID,
|
|
category: "liquids",
|
|
viscosity: 100000,
|
|
state: "liquid",
|
|
density: 720,
|
|
};
|
|
|
|
// Changing existing elements:
|
|
elements.water.color = "#ff0000";
|
|
elements.water.behavior = behaviors.WALL;
|
|
|
|
// Removing elements:
|
|
// Be aware, things may break
|
|
delete elements.ketchup;
|
|
|
|
// Adding behavior presets:
|
|
behaviors.SELFDELETE = [
|
|
"XX|XX|XX",
|
|
"XX|DL|XX",
|
|
"XX|XX|XX",
|
|
];
|
|
|
|
// Creating eLists:
|
|
eLists.CONDIMENT = ["ketchup","melted_cheese","mayo"];
|
|
// Adding elements to eLists:
|
|
eLists.CONDIMENT.push("honey");
|
|
|