2024-03-28 06:58:59 -04:00
|
|
|
// made by voidapex11
|
|
|
|
|
// a sandboxels mod that adds pullers
|
|
|
|
|
/*
|
|
|
|
|
==CHANGELOG==
|
2024-04-14 04:48:42 -04:00
|
|
|
Version 1.1.2
|
2024-03-28 06:58:59 -04:00
|
|
|
@voidapex11
|
2024-04-14 04:48:42 -04:00
|
|
|
~fixed spelling mistake's
|
|
|
|
|
|
|
|
|
|
Version 1.1.1
|
|
|
|
|
@voidapex11
|
|
|
|
|
~initial commit
|
2024-03-28 06:58:59 -04:00
|
|
|
+pullersDesc
|
|
|
|
|
+imovable_inator& movable_inator
|
|
|
|
|
+imovable wall, steel & insulation
|
|
|
|
|
+L, R, U & D pullers
|
|
|
|
|
+void light&dark
|
2024-04-14 04:48:42 -04:00
|
|
|
~don't commit without permission as you may disrupt other dev's hard work
|
2024-03-28 06:58:59 -04:00
|
|
|
~update changelog with newer updates first
|
|
|
|
|
~Version format is:
|
2024-04-14 04:48:42 -04:00
|
|
|
rewrites.major updates.paches&minor features
|
|
|
|
|
put a '#' at the end of the version format if it has not been pushed to the github
|
2024-03-28 06:58:59 -04:00
|
|
|
~for change-log
|
|
|
|
|
'~' means notes/changes '+' means aditions and '-' is removals
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
behaviors.SELFDELETE = [
|
|
|
|
|
"XX|XX|XX",
|
|
|
|
|
"XX|DL|XX",
|
|
|
|
|
"XX|XX|XX",
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
pullerColour = '#e0adb6'
|
|
|
|
|
|
|
|
|
|
elements.pullersDesc = {
|
|
|
|
|
color: pullerColour,
|
|
|
|
|
name: 'pullers.js',
|
|
|
|
|
category: "mods",
|
|
|
|
|
behavior: behaviors.SELFDELETE,
|
|
|
|
|
tool: function(pixel) {},
|
|
|
|
|
onSelect: function(pixel) {
|
|
|
|
|
let info1stMod = `pullers.js is a mod made by voidapex11 that adds pullers to sandboxels`
|
|
|
|
|
alert(info1stMod)
|
|
|
|
|
return
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// for the inator reference: if you know you know
|
2024-04-14 04:48:42 -04:00
|
|
|
elements.immovable_inator = {
|
2024-03-28 06:58:59 -04:00
|
|
|
color: "#525252",
|
|
|
|
|
tool: function(pixel) {
|
2024-04-14 04:48:42 -04:00
|
|
|
pixel.immovable = true
|
2024-03-28 06:58:59 -04:00
|
|
|
},
|
|
|
|
|
category: "tools",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
elements.movable_inator = {
|
|
|
|
|
color: "#a8a8a8",
|
|
|
|
|
tool: function(pixel) {
|
2024-04-14 04:48:42 -04:00
|
|
|
pixel.immovable = false
|
2024-03-28 06:58:59 -04:00
|
|
|
},
|
|
|
|
|
category: 'tools',
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-04-14 04:48:42 -04:00
|
|
|
elements.immovable_wall = {
|
2024-03-28 06:58:59 -04:00
|
|
|
color: "#808080",
|
|
|
|
|
behavior: behaviors.WALL,
|
|
|
|
|
category: "solids",
|
|
|
|
|
insulate: true,
|
|
|
|
|
hardness: 1,
|
|
|
|
|
noMix: true,
|
|
|
|
|
properties: {
|
2024-04-14 04:48:42 -04:00
|
|
|
immovable: true
|
2024-03-28 06:58:59 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-14 04:48:42 -04:00
|
|
|
elements.immovable_steel = {
|
2024-03-28 06:58:59 -04:00
|
|
|
color: "#71797e",
|
|
|
|
|
behavior: behaviors.WALL,
|
|
|
|
|
reactions: {
|
|
|
|
|
"water": { elem1:"rust", chance:0.002 },
|
|
|
|
|
"salt_water": { elem1:"rust", chance:0.004 },
|
|
|
|
|
"dirty_water": { elem1:"rust", chance:0.03 },
|
|
|
|
|
"pool_water": { elem1:"rust", chance:0.03 },
|
|
|
|
|
"sugar_water": { elem1:"rust", chance:0.003 },
|
|
|
|
|
"seltzer": { elem1:"rust", chance:0.005 },
|
|
|
|
|
"salt": { elem1:"rust", chance:0.003 },
|
|
|
|
|
"blood": { elem1:"rust", chance:0.002 },
|
|
|
|
|
"infection": { elem1:"rust", chance:0.002 },
|
|
|
|
|
"antibody": { elem1:"rust", chance:0.002 },
|
|
|
|
|
},
|
|
|
|
|
tempHigh: 1455.5,
|
|
|
|
|
category: "solids",
|
|
|
|
|
density: 7850,
|
|
|
|
|
conduct: 0.42,
|
|
|
|
|
hardness: 0.8,
|
|
|
|
|
properties: {
|
2024-04-14 04:48:42 -04:00
|
|
|
immovable: true
|
2024-03-28 06:58:59 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-14 04:48:42 -04:00
|
|
|
elements.immovable_insulation = {
|
2024-03-28 06:58:59 -04:00
|
|
|
color: "#b8aea5",
|
|
|
|
|
behavior: behaviors.WALL,
|
|
|
|
|
category: "solids",
|
|
|
|
|
insulate: true,
|
|
|
|
|
state: "solid",
|
|
|
|
|
noMix: true,
|
|
|
|
|
properties: {
|
2024-04-14 04:48:42 -04:00
|
|
|
immovable: true
|
2024-03-28 06:58:59 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
elements.left_puller = {
|
|
|
|
|
color: pullerColour,
|
|
|
|
|
properties: {
|
|
|
|
|
range: 10,
|
|
|
|
|
pushStrength: 1,
|
|
|
|
|
},
|
|
|
|
|
tick: function(pixel) {
|
|
|
|
|
pixel.range ??= 10;
|
|
|
|
|
pixel.pushStrength ??= 1;
|
|
|
|
|
for(h = pixel.pushStrength; h >= pixel.pushStrength; h--) {
|
|
|
|
|
for (i = 1; i <= pixel.range; i++) {
|
|
|
|
|
|
|
|
|
|
if (!isEmpty(pixel.x + i, pixel.y, true)) {
|
2024-04-14 04:48:42 -04:00
|
|
|
if (pixelMap[pixel.x+i][pixel.y]['immovable']) {break}
|
2024-03-28 06:58:59 -04:00
|
|
|
else {
|
|
|
|
|
tryMove(pixelMap[pixel.x + i][pixel.y], pixel.x + i - 1, pixel.y);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
doDefaults(pixel);
|
|
|
|
|
},
|
|
|
|
|
category: "machines",
|
|
|
|
|
breakInto: ["metal_scrap", "steel", "iron", "glass", "uranium", "tin"],
|
|
|
|
|
tempHigh: 2400,
|
|
|
|
|
stateHigh: ["molten_aluminum", "molten_steel", "molten_iron", "molten_glass", "molten_uranium", "molten_tin"],
|
|
|
|
|
density: 10000,
|
|
|
|
|
hardness: 0.85,
|
|
|
|
|
conduct: 1,
|
|
|
|
|
state: "solid",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
elements.right_puller = {
|
|
|
|
|
color: pullerColour,
|
|
|
|
|
properties: {
|
|
|
|
|
range: 10,
|
|
|
|
|
pushStrength: 1,
|
|
|
|
|
},
|
|
|
|
|
tick: function(pixel) {
|
|
|
|
|
pixel.range ??= 10;
|
|
|
|
|
pixel.pushStrength ??= 1;
|
|
|
|
|
for(h = pixel.pushStrength; h >= pixel.pushStrength; h--) {
|
|
|
|
|
for (i = 1; i <= pixel.range; i++) {
|
|
|
|
|
if (!isEmpty(pixel.x - i, pixel.y, true)) {
|
2024-04-14 04:48:42 -04:00
|
|
|
if (pixelMap[pixel.x-i][pixel.y]['immovable']) {break}
|
2024-03-28 06:58:59 -04:00
|
|
|
else {
|
|
|
|
|
tryMove(pixelMap[pixel.x - i][pixel.y], pixel.x - i + 1, pixel.y);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
doDefaults(pixel);
|
|
|
|
|
},
|
|
|
|
|
category: "machines",
|
|
|
|
|
breakInto: ["metal_scrap", "steel", "iron", "glass", "uranium", "tin"],
|
|
|
|
|
tempHigh: 2400,
|
|
|
|
|
stateHigh: ["molten_aluminum", "molten_steel", "molten_iron", "molten_glass", "molten_uranium", "molten_tin"],
|
|
|
|
|
density: 10000,
|
|
|
|
|
hardness: 0.85,
|
|
|
|
|
conduct: 1,
|
|
|
|
|
state: "solid",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
elements.down_puller = {
|
|
|
|
|
color: pullerColour,
|
|
|
|
|
properties: {
|
|
|
|
|
range: 10,
|
|
|
|
|
pushStrength: 1,
|
|
|
|
|
},
|
|
|
|
|
tick: function(pixel) {
|
|
|
|
|
pixel.range ??= 10;
|
|
|
|
|
pixel.pushStrength ??= 1;
|
|
|
|
|
for(h = pixel.pushStrength; h >= pixel.pushStrength; h--) {
|
|
|
|
|
for (i = 1; i <= pixel.range; i++) {
|
|
|
|
|
|
|
|
|
|
if (!isEmpty(pixel.x, pixel.y - i, true)) {
|
2024-04-14 04:48:42 -04:00
|
|
|
if (pixelMap[pixel.x][pixel.y - i]['immovable]) {break}
|
2024-03-28 06:58:59 -04:00
|
|
|
else {
|
|
|
|
|
tryMove(pixelMap[pixel.x][pixel.y - i], pixel.x, pixel.y - i + 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
doDefaults(pixel);
|
|
|
|
|
},
|
|
|
|
|
category: "machines",
|
|
|
|
|
breakInto: ["metal_scrap", "steel", "iron", "glass", "uranium", "tin"],
|
|
|
|
|
tempHigh: 2400,
|
|
|
|
|
stateHigh: ["molten_aluminum", "molten_steel", "molten_iron", "molten_glass", "molten_uranium", "molten_tin"],
|
|
|
|
|
density: 10000,
|
|
|
|
|
hardness: 0.85,
|
|
|
|
|
conduct: 1,
|
|
|
|
|
state: "solid",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
elements.up_puller = {
|
|
|
|
|
color: pullerColour,
|
|
|
|
|
properties: {
|
|
|
|
|
range: 10,
|
|
|
|
|
pushStrength: 1,
|
|
|
|
|
},
|
|
|
|
|
tick: function(pixel) {
|
|
|
|
|
pixel.range ??= 10;
|
|
|
|
|
pixel.pushStrength ??= 1;
|
|
|
|
|
for(h = pixel.pushStrength; h >= pixel.pushStrength; h--) {
|
|
|
|
|
for (i = 1; i <= pixel.range; i++) {
|
|
|
|
|
if (!isEmpty(pixel.x, pixel.y + i, true)) {
|
|
|
|
|
|
2024-04-14 04:48:42 -04:00
|
|
|
if (pixelMap[pixel.x][pixel.y + i]['immovable']){
|
2024-03-28 06:58:59 -04:00
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
tryMove(pixelMap[pixel.x][pixel.y + i], pixel.x, pixel.y + i - 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
doDefaults(pixel);
|
|
|
|
|
},
|
|
|
|
|
category: "machines",
|
|
|
|
|
breakInto: ["metal_scrap", "steel", "iron", "glass", "uranium", "tin"],
|
|
|
|
|
tempHigh: 2400,
|
|
|
|
|
stateHigh: ["molten_aluminum", "molten_steel", "molten_iron", "molten_glass", "molten_uranium", "molten_tin"],
|
|
|
|
|
density: 10000,
|
|
|
|
|
hardness: 0.85,
|
|
|
|
|
conduct: 1,
|
|
|
|
|
state: "solid",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (enabledMods.includes("pushers.js")) {
|
2024-04-14 04:48:42 -04:00
|
|
|
console.log('compatibility with pushers.js and imovable objects coming in a later update of the pullers.js\neventualy...')
|
2024-03-28 06:58:59 -04:00
|
|
|
}
|