Update cubesstuff.js

This commit is contained in:
Cube14yt 2025-08-11 19:32:23 +08:00 committed by GitHub
parent 0a682ba87c
commit e7668c095f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 88 additions and 62 deletions

View File

@ -14,6 +14,7 @@ V3.1
Bug Fixes
Chalk powder, Wet chalk poeder, and Obsidian shard can now be glued back as intended.
Dog can now be smashed correctly.
Steam support with promptInput() instead of prompt()
*/
@ -648,24 +649,35 @@ elements.circle = {
category: "special",
state: "solid",
onSelect: function () {
let ans1 = Number(prompt("Select the radius you want your circle to be:"));
let ans2 = prompt("Now give the element your circle should be made of:");
// Validate radius
promptInput(
"Select the radius you want your circle to be:",
function (input1) {
let ans1 = Number(input1)
if (Number.isInteger(ans1) && ans1 > 0) {
circleRad = ans1;
circleRad = ans1
} else {
logMessage("Invalid radius, using default/last size: " + circleRad);
circleRad = 7
logMessage("Invalid radius, using default size: " + circleRad);
}
// Validate element
promptInput(
"Select the element you want your circle to be:",
function (ans2) {
let similar = mostSimilarElement(ans2);
if (similar && elements[similar]) {
circleElem = similar;
} else {
logMessage("Invalid element, using default/last element: " + circleElem);
circleElem = "wood"
logMessage("Invalid element, using default element: " + circleElem);
}
},
"Element prompt",
"wood"
);
},
"Radius prompt",
"7"
);
},
onPlace: function (pixel) {
drawCircle(pixel.x, pixel.y, circleRad, circleElem);
changePixel(pixel, circleElem);
@ -691,7 +703,7 @@ let b = randomIntInRange(0, 255);
elements.rgb_led = {
buttonColor: ["#ff0000", "#ff8800", "#ffff00", "#00ff00", "#00ffff", "#0000ff", "#ff00ff"],
behavior: behaviors.WALL,
desc: "Input The red green and blue value (not exceeding 255) and get the color of",
desc: "Input the red, green, and blue value (not exceeding 255) and get the color.",
renderer: renderPresets.LED,
conduct: 1,
state: "solid",
@ -704,35 +716,43 @@ elements.rgb_led = {
category: "machines",
tempHigh: 1500,
stateHigh: ["molten_glass", "molten_glass", "molten_glass", "molten_gallium"],
onSelect: () => {
var r_inp = parseInt(prompt("Enter red value (0-255):"));
var g_inp = parseInt(prompt("Enter green value (0-255):"));
var b_inp = parseInt(prompt("Enter blue value (0-255):"));
onSelect: () => {
promptInput("Enter red value (0-255):", function (r_inp) {
r_inp = parseInt(r_inp);
if (r_inp > 255 || r_inp < 0 || isNaN(r_inp)) {
logMessage("Red value is invalid, using default/last red value: " + r);
} else {
r = r_inp;
}
promptInput("Enter green value (0-255):", function (g_inp) {
g_inp = parseInt(g_inp);
if (g_inp > 255 || g_inp < 0 || isNaN(g_inp)) {
logMessage("Green value is invalid, using default/last green value: " + g);
} else {
g = g_inp;
}
promptInput("Enter blue value (0-255):", function (b_inp) {
b_inp = parseInt(b_inp);
if (b_inp > 255 || b_inp < 0 || isNaN(b_inp)) {
logMessage("Blue value is invalid, using default/last blue value: " + b);
} else {
b = b_inp;
}
}, "Blue Value", b); // optional default input
}, "Green Value", g);
}, "Red Value", r);
},
onPlace: (pixel) => {
var ledColor = RGBToHex({ r: r, g: g, b: b });
pixel.color = ledColor;
}
};
runAfterReset(() => {
r = 100;
g = 100;
@ -1199,7 +1219,9 @@ elements.custom_bomb = {
cooldown: defaultCooldown,
behavior: behaviors.STURDYPOWDER,
onSelect: function () {
input = prompt("Input the element you want your bomb to explode into", "fire")
promptInput(
"Input the element you want your bomb to explode into",
function (input) {
pr1 = mostSimilarElement(input)
if (elements[pr1]) {
if (pr1 === "custom_bomb") {
@ -1213,6 +1235,10 @@ elements.custom_bomb = {
logMessage("Invalid element. Using default: fire")
}
},
"Element prompt",
"fire"
)
},
tick: function (pixel) {
let belowPixel = getPixel(pixel.x, pixel.y + 1);