Update cubesstuff.js
This commit is contained in:
parent
0a682ba87c
commit
e7668c095f
|
|
@ -14,6 +14,7 @@ V3.1
|
||||||
Bug Fixes
|
Bug Fixes
|
||||||
Chalk powder, Wet chalk poeder, and Obsidian shard can now be glued back as intended.
|
Chalk powder, Wet chalk poeder, and Obsidian shard can now be glued back as intended.
|
||||||
Dog can now be smashed correctly.
|
Dog can now be smashed correctly.
|
||||||
|
Steam support with promptInput() instead of prompt()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -352,7 +353,7 @@ elements.obsidian_shard = {
|
||||||
state: "solid",
|
state: "solid",
|
||||||
density: 2500,
|
density: 2500,
|
||||||
reactions: {
|
reactions: {
|
||||||
"glue": {elem1: "obsidian", elem2: null}
|
"glue": { elem1: "obsidian", elem2: null }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -648,23 +649,34 @@ elements.circle = {
|
||||||
category: "special",
|
category: "special",
|
||||||
state: "solid",
|
state: "solid",
|
||||||
onSelect: function () {
|
onSelect: function () {
|
||||||
let ans1 = Number(prompt("Select the radius you want your circle to be:"));
|
promptInput(
|
||||||
let ans2 = prompt("Now give the element your circle should be made of:");
|
"Select the radius you want your circle to be:",
|
||||||
|
function (input1) {
|
||||||
// Validate radius
|
let ans1 = Number(input1)
|
||||||
if (Number.isInteger(ans1) && ans1 > 0) {
|
if (Number.isInteger(ans1) && ans1 > 0) {
|
||||||
circleRad = ans1;
|
circleRad = ans1
|
||||||
} else {
|
} else {
|
||||||
logMessage("Invalid radius, using default/last size: " + circleRad);
|
circleRad = 7
|
||||||
}
|
logMessage("Invalid radius, using default size: " + circleRad);
|
||||||
|
}
|
||||||
// Validate element
|
promptInput(
|
||||||
let similar = mostSimilarElement(ans2);
|
"Select the element you want your circle to be:",
|
||||||
if (similar && elements[similar]) {
|
function (ans2) {
|
||||||
circleElem = similar;
|
let similar = mostSimilarElement(ans2);
|
||||||
} else {
|
if (similar && elements[similar]) {
|
||||||
logMessage("Invalid element, using default/last element: " + circleElem);
|
circleElem = similar;
|
||||||
}
|
} else {
|
||||||
|
circleElem = "wood"
|
||||||
|
logMessage("Invalid element, using default element: " + circleElem);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Element prompt",
|
||||||
|
"wood"
|
||||||
|
);
|
||||||
|
},
|
||||||
|
"Radius prompt",
|
||||||
|
"7"
|
||||||
|
);
|
||||||
},
|
},
|
||||||
onPlace: function (pixel) {
|
onPlace: function (pixel) {
|
||||||
drawCircle(pixel.x, pixel.y, circleRad, circleElem);
|
drawCircle(pixel.x, pixel.y, circleRad, circleElem);
|
||||||
|
|
@ -691,7 +703,7 @@ let b = randomIntInRange(0, 255);
|
||||||
elements.rgb_led = {
|
elements.rgb_led = {
|
||||||
buttonColor: ["#ff0000", "#ff8800", "#ffff00", "#00ff00", "#00ffff", "#0000ff", "#ff00ff"],
|
buttonColor: ["#ff0000", "#ff8800", "#ffff00", "#00ff00", "#00ffff", "#0000ff", "#ff00ff"],
|
||||||
behavior: behaviors.WALL,
|
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,
|
renderer: renderPresets.LED,
|
||||||
conduct: 1,
|
conduct: 1,
|
||||||
state: "solid",
|
state: "solid",
|
||||||
|
|
@ -704,35 +716,43 @@ elements.rgb_led = {
|
||||||
category: "machines",
|
category: "machines",
|
||||||
tempHigh: 1500,
|
tempHigh: 1500,
|
||||||
stateHigh: ["molten_glass", "molten_glass", "molten_glass", "molten_gallium"],
|
stateHigh: ["molten_glass", "molten_glass", "molten_glass", "molten_gallium"],
|
||||||
|
|
||||||
onSelect: () => {
|
onSelect: () => {
|
||||||
var r_inp = parseInt(prompt("Enter red value (0-255):"));
|
promptInput("Enter red value (0-255):", function (r_inp) {
|
||||||
var g_inp = parseInt(prompt("Enter green value (0-255):"));
|
r_inp = parseInt(r_inp);
|
||||||
var b_inp = parseInt(prompt("Enter blue value (0-255):"));
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
if (r_inp > 255 || r_inp < 0 || isNaN(r_inp)) {
|
promptInput("Enter green value (0-255):", function (g_inp) {
|
||||||
logMessage("Red value is invalid, using default/last red value: " + r);
|
g_inp = parseInt(g_inp);
|
||||||
} else {
|
if (g_inp > 255 || g_inp < 0 || isNaN(g_inp)) {
|
||||||
r = r_inp;
|
logMessage("Green value is invalid, using default/last green value: " + g);
|
||||||
}
|
} else {
|
||||||
|
g = g_inp;
|
||||||
|
}
|
||||||
|
|
||||||
if (g_inp > 255 || g_inp < 0 || isNaN(g_inp)) {
|
promptInput("Enter blue value (0-255):", function (b_inp) {
|
||||||
logMessage("Green value is invalid, using default/last green value: " + g);
|
b_inp = parseInt(b_inp);
|
||||||
} else {
|
if (b_inp > 255 || b_inp < 0 || isNaN(b_inp)) {
|
||||||
g = g_inp;
|
logMessage("Blue value is invalid, using default/last blue value: " + b);
|
||||||
}
|
} else {
|
||||||
|
b = b_inp;
|
||||||
if (b_inp > 255 || b_inp < 0 || isNaN(b_inp)) {
|
}
|
||||||
logMessage("Blue value is invalid, using default/last blue value: " + b);
|
}, "Blue Value", b); // optional default input
|
||||||
} else {
|
}, "Green Value", g);
|
||||||
b = b_inp;
|
}, "Red Value", r);
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
onPlace: (pixel) => {
|
onPlace: (pixel) => {
|
||||||
var ledColor = RGBToHex({ r: r, g: g, b: b });
|
var ledColor = RGBToHex({ r: r, g: g, b: b });
|
||||||
pixel.color = ledColor;
|
pixel.color = ledColor;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
runAfterReset(() => {
|
runAfterReset(() => {
|
||||||
r = 100;
|
r = 100;
|
||||||
g = 100;
|
g = 100;
|
||||||
|
|
@ -926,7 +946,7 @@ elements.chalk_powder = {
|
||||||
"pool_water": { elem1: "wet_chalk_powder", elem2: null, chance: 0.5 },
|
"pool_water": { elem1: "wet_chalk_powder", elem2: null, chance: 0.5 },
|
||||||
"primordial_soup": { elem1: "wet_chalk_powder", elem2: null, chance: 0.5 },
|
"primordial_soup": { elem1: "wet_chalk_powder", elem2: null, chance: 0.5 },
|
||||||
"nut_milk": { elem1: "wet_chalk_powder", elem2: null, chance: 0.5 },
|
"nut_milk": { elem1: "wet_chalk_powder", elem2: null, chance: 0.5 },
|
||||||
"glue": {elem1: "chalk", elem2: null}
|
"glue": { elem1: "chalk", elem2: null }
|
||||||
},
|
},
|
||||||
state: "solid"
|
state: "solid"
|
||||||
}
|
}
|
||||||
|
|
@ -959,7 +979,7 @@ elements.wet_chalk_powder = {
|
||||||
},
|
},
|
||||||
state: "solid",
|
state: "solid",
|
||||||
reactions: {
|
reactions: {
|
||||||
"glue": {elem1: "chalk", elem2: null}
|
"glue": { elem1: "chalk", elem2: null }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1199,19 +1219,25 @@ elements.custom_bomb = {
|
||||||
cooldown: defaultCooldown,
|
cooldown: defaultCooldown,
|
||||||
behavior: behaviors.STURDYPOWDER,
|
behavior: behaviors.STURDYPOWDER,
|
||||||
onSelect: function () {
|
onSelect: function () {
|
||||||
input = prompt("Input the element you want your bomb to explode into", "fire")
|
promptInput(
|
||||||
pr1 = mostSimilarElement(input)
|
"Input the element you want your bomb to explode into",
|
||||||
if (elements[pr1]) {
|
function (input) {
|
||||||
if (pr1 === "custom_bomb") {
|
pr1 = mostSimilarElement(input)
|
||||||
explodeElem = 'fire'
|
if (elements[pr1]) {
|
||||||
logMessage("Element cannot explode to itself. Using default: fire")
|
if (pr1 === "custom_bomb") {
|
||||||
}
|
explodeElem = 'fire'
|
||||||
else { explodeElem = pr1 }
|
logMessage("Element cannot explode to itself. Using default: fire")
|
||||||
}
|
}
|
||||||
else {
|
else { explodeElem = pr1 }
|
||||||
explodeElem = 'fire'
|
}
|
||||||
logMessage("Invalid element. Using default: fire")
|
else {
|
||||||
}
|
explodeElem = 'fire'
|
||||||
|
logMessage("Invalid element. Using default: fire")
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Element prompt",
|
||||||
|
"fire"
|
||||||
|
)
|
||||||
},
|
},
|
||||||
tick: function (pixel) {
|
tick: function (pixel) {
|
||||||
let belowPixel = getPixel(pixel.x, pixel.y + 1);
|
let belowPixel = getPixel(pixel.x, pixel.y + 1);
|
||||||
|
|
@ -1414,15 +1440,15 @@ elements.dog = {
|
||||||
burnInto: ["cooked_meat", "smoke"],
|
burnInto: ["cooked_meat", "smoke"],
|
||||||
breakInto: ["meat", "blood"],
|
breakInto: ["meat", "blood"],
|
||||||
reactions: {
|
reactions: {
|
||||||
"meat": {elem2:null, chance:0.5, func:behaviors.FEEDPIXEL },
|
"meat": { elem2: null, chance: 0.5, func: behaviors.FEEDPIXEL },
|
||||||
"egg": {elem2:null, chance:0.5, func:behaviors.FEEDPIXEL },
|
"egg": { elem2: null, chance: 0.5, func: behaviors.FEEDPIXEL },
|
||||||
"yolk": {elem2:null, chance:0.5, func:behaviors.FEEDPIXEL },
|
"yolk": { elem2: null, chance: 0.5, func: behaviors.FEEDPIXEL },
|
||||||
"cheese": {elem2:null, chance:0.5, func:behaviors.FEEDPIXEL },
|
"cheese": { elem2: null, chance: 0.5, func: behaviors.FEEDPIXEL },
|
||||||
"cooked_meat": {elem2:null, chance:0.5, func:behaviors.FEEDPIXEL },
|
"cooked_meat": { elem2: null, chance: 0.5, func: behaviors.FEEDPIXEL },
|
||||||
"chocolate": {elem2:null, chance: 0.2, func:behaviors.FEEDPIXEL, elem1: "rotten_meat"},
|
"chocolate": { elem2: null, chance: 0.2, func: behaviors.FEEDPIXEL, elem1: "rotten_meat" },
|
||||||
"grape": {elem2:null, chance: 0.2, func:behaviors.FEEDPIXEL, elem1: "rotten_meat"},
|
"grape": { elem2: null, chance: 0.2, func: behaviors.FEEDPIXEL, elem1: "rotten_meat" },
|
||||||
"rat": {elem2:null, chance: 0.3, func:behaviors.FEEDPIXEL },
|
"rat": { elem2: null, chance: 0.3, func: behaviors.FEEDPIXEL },
|
||||||
"nut_butter": {elem2:null, chance: 0.5, func:behaviors.FEEDPIXEL },
|
"nut_butter": { elem2: null, chance: 0.5, func: behaviors.FEEDPIXEL },
|
||||||
},
|
},
|
||||||
egg: "dog",
|
egg: "dog",
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue