require explodeAtPlus
This commit is contained in:
parent
b0be8402e3
commit
805614ff5e
|
|
@ -1,6 +1,10 @@
|
|||
urlParams = new URLSearchParams(window.location.search);
|
||||
var modName = "mods/more_bombs.js";
|
||||
var explodeAtPlusMod = "mods/explodeAtPlus.js";
|
||||
|
||||
if(urlParams.get('bombAmount') != null) { //null check
|
||||
if(enabledMods.includes(explodeAtPlusMod)) {
|
||||
urlParams = new URLSearchParams(window.location.search);
|
||||
|
||||
if(urlParams.get('bombAmount') != null) { //null check
|
||||
bombAmount = urlParams.get('bombAmount')
|
||||
if(isNaN(bombAmount) || bombAmount === "" || bombAmount === null) { //NaN check
|
||||
bombAmount = 10
|
||||
|
|
@ -12,128 +16,26 @@ if(urlParams.get('bombAmount') != null) { //null check
|
|||
alert("Minimum amount of additional bomb/anti-bomb pairs is 1.\n1 pair was added.")
|
||||
}
|
||||
bombAmount = Math.min(50,Math.max(bombAmount,1))
|
||||
} else {
|
||||
} else {
|
||||
bombAmount = 10
|
||||
}
|
||||
}
|
||||
|
||||
if(typeof(runAfterAutogen) === "function") {
|
||||
if(typeof(runAfterAutogen) === "function") {
|
||||
runAfterAutogen(function() {
|
||||
if(typeof(elements.vaporized_rock) === "object") {
|
||||
elements.molten_dirt.tempHigh = 3000;
|
||||
elements.molten_dirt.stateHigh = "vaporized_rock";
|
||||
};
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
function explodeAtPlus(x,y,radius,fire="fire",smoke="smoke",beforeFunction=null,afterFunction=null,changeTemp=true) {
|
||||
// if fire contains , split it into an array
|
||||
if (fire.indexOf(",") !== -1) {
|
||||
fire = fire.split(",");
|
||||
};
|
||||
if (smoke.indexOf(",") !== -1) {
|
||||
smoke = smoke.split(",");
|
||||
};
|
||||
var coords = circleCoords(x,y,radius);
|
||||
var power = radius/10;
|
||||
//for (var p = 0; p < Math.round(radius/10+1); p++) {
|
||||
for (var i = 0; i < coords.length; i++) {
|
||||
// damage value is based on distance from x and y
|
||||
var damage = Math.random() + (Math.floor(Math.sqrt(Math.pow(coords[i].x-x,2) + Math.pow(coords[i].y-y,2)))) / radius;
|
||||
// invert
|
||||
damage = 1 - damage;
|
||||
if (damage < 0) { damage = 0; }
|
||||
damage *= power;
|
||||
if (isEmpty(coords[i].x,coords[i].y)) {
|
||||
// create smoke or fire depending on the damage if empty
|
||||
if (damage < 0.02) { } // do nothing
|
||||
else if (damage < 0.2) {
|
||||
// if smoke is an array, choose a random item
|
||||
if (Array.isArray(smoke)) {
|
||||
createPixel(smoke[Math.floor(Math.random() * smoke.length)],coords[i].x,coords[i].y);
|
||||
}
|
||||
else {
|
||||
createPixel(smoke,coords[i].x,coords[i].y);
|
||||
}
|
||||
}
|
||||
else {
|
||||
// if fire is an array, choose a random item
|
||||
if (Array.isArray(fire)) {
|
||||
createPixel(fire[Math.floor(Math.random() * fire.length)],coords[i].x,coords[i].y);
|
||||
}
|
||||
else {
|
||||
createPixel(fire,coords[i].x,coords[i].y);
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (!outOfBounds(coords[i].x,coords[i].y)) {
|
||||
// damage the pixel
|
||||
var pixel = pixelMap[coords[i].x][coords[i].y];
|
||||
var info = elements[pixel.element];
|
||||
if(typeof(beforeFunction) === "function") {
|
||||
beforeFunction(pixel,x,y,radius,fire,smoke,power,damage);
|
||||
};
|
||||
if (info.hardness) { // lower damage depending on hardness(0-1)
|
||||
if (info.hardness < 1) {
|
||||
damage = damage * ((1 - info.hardness)*10);
|
||||
}
|
||||
else { damage = 0; }
|
||||
}
|
||||
if (damage > 0.9) {
|
||||
if (Array.isArray(fire)) {
|
||||
var newfire = fire[Math.floor(Math.random() * fire.length)];
|
||||
}
|
||||
else {
|
||||
var newfire = fire;
|
||||
}
|
||||
changePixel(pixel,newfire,changeTemp);
|
||||
continue;
|
||||
}
|
||||
else if (damage > 0.25) {
|
||||
if (info.breakInto) {
|
||||
// if it is an array, choose a random item, else just use the value
|
||||
if (Array.isArray(info.breakInto)) {
|
||||
var result = info.breakInto[Math.floor(Math.random() * info.breakInto.length)];
|
||||
}
|
||||
else {
|
||||
var result = info.breakInto;
|
||||
}
|
||||
// change the pixel to the result
|
||||
changePixel(pixel,result,changeTemp);
|
||||
continue;
|
||||
}
|
||||
else {
|
||||
if (Array.isArray(fire)) {
|
||||
var newfire = fire[Math.floor(Math.random() * fire.length)];
|
||||
}
|
||||
else {
|
||||
var newfire = fire;
|
||||
}
|
||||
changePixel(pixel,newfire,changeTemp);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
if (damage > 0.75 && info.burn) {
|
||||
pixel.burning = true;
|
||||
pixel.burnStart = pixelTicks;
|
||||
}
|
||||
pixel.temp += damage*radius*power;
|
||||
pixelTempCheck(pixel);
|
||||
if(typeof(afterFunction) === "function") {
|
||||
//console.log(`running afterFunction ${afterFunction}`)
|
||||
//console.log(`arguments: ${pixel}, ${x}, ${y}, ${radius}, ${fire}, ${smoke}, ${power}, ${damage}`)
|
||||
afterFunction(pixel,x,y,radius,fire,smoke,power,damage);
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
function hotterBomb(pixel,x,y,radius,fire,smoke,power,damage) {
|
||||
function hotterBomb(pixel,x,y,radius,fire,smoke,power,damage) {
|
||||
//console.log(`Radius: ${radius}\nPower: ${power}\nPixel: (${pixel.x},${pixel.y})\nDamage: ${damage}`);
|
||||
//console.log(`Expected temperature increase for pixel at (${pixel.x},${pixel.y}): ${800 * ((1 + (7 * damage)) ** 2) * ((power ** 2) * 1.5)}`);
|
||||
pixel.temp += (800 * ((1 + (7 * damage)) ** 2) * ((power ** 2) * 1.5));
|
||||
};
|
||||
};
|
||||
|
||||
elements.cluster_nuke = {
|
||||
elements.cluster_nuke = {
|
||||
color: "#e3f636",
|
||||
behavior: [
|
||||
"CR:radiation%5|EX:90>plasma,plasma,plasma,nuke,nuke,nuke,radiation,radiation,radiation,rad_steam,rad_steam,radiation,rad_steam AND CR:radiation%5|CR:radiation%5",
|
||||
|
|
@ -144,9 +46,9 @@ elements.cluster_nuke = {
|
|||
state: "solid",
|
||||
density: 1500,
|
||||
excludeRandom: true,
|
||||
};
|
||||
};
|
||||
|
||||
elements.anti_bomb = {
|
||||
elements.anti_bomb = {
|
||||
color: "#525c61",
|
||||
behavior: [
|
||||
"M2|M1 AND EX:10|M2",
|
||||
|
|
@ -157,9 +59,9 @@ elements.anti_bomb = {
|
|||
state: "solid",
|
||||
density: 1300,
|
||||
excludeRandom: true,
|
||||
};
|
||||
};
|
||||
|
||||
elements.electric_bomblet = {
|
||||
elements.electric_bomblet = {
|
||||
color: "#ffffff",
|
||||
behavior: [
|
||||
"SH%50|EX:8>electric AND SH%50|SH%50",
|
||||
|
|
@ -172,9 +74,9 @@ elements.electric_bomblet = {
|
|||
hidden: true,
|
||||
excludeRandom: true,
|
||||
hardness: 0.3,
|
||||
};
|
||||
};
|
||||
|
||||
elements.electric_cluster_bomb = {
|
||||
elements.electric_cluster_bomb = {
|
||||
color: "#ffffff",
|
||||
behavior: [
|
||||
"SH%50|EX:8>electric_bomblet AND SH%50|SH%50",
|
||||
|
|
@ -187,9 +89,9 @@ elements.electric_cluster_bomb = {
|
|||
hidden: true,
|
||||
excludeRandom: true,
|
||||
hardness: 0.3,
|
||||
};
|
||||
};
|
||||
|
||||
elements.radioactive_popper = {
|
||||
elements.radioactive_popper = {
|
||||
color: "#d6ce72",
|
||||
behavior: [
|
||||
"XX|EX:7>radiation|XX",
|
||||
|
|
@ -203,9 +105,9 @@ elements.radioactive_popper = {
|
|||
excludeRandom: true,
|
||||
hardness: 0.3,
|
||||
cooldown: 3,
|
||||
};
|
||||
};
|
||||
|
||||
elements.acid_bomb = {
|
||||
elements.acid_bomb = {
|
||||
color: "#7d8a63",
|
||||
behavior: [
|
||||
"XX|EX:15>acid_gas|XX",
|
||||
|
|
@ -217,11 +119,11 @@ elements.acid_bomb = {
|
|||
density: 1400,
|
||||
excludeRandom: true,
|
||||
cooldown: defaultCooldown,
|
||||
};
|
||||
};
|
||||
|
||||
amalgamatedBombFire = "plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,smoke,plasma,plasma,fire,smoke,fire,smoke,plasma,metal_scrap,metal_scrap,metal_scrap,metal_scrap,metal_scrap,acid,acid,oil,oil,oil,oil,oil,oil,oil,plasma,plasma,plasma,plasma,plasma,smoke,plasma,plasma,fire,smoke,plasma,metal_scrap,metal_scrap,metal_scrap,metal_scrap,metal_scrap,metal_scrap,flash,flash,flash,flash,flash,acid_gas,acid_gas,acid_gas,acid,oil,oil,oil,oil,oil,oil,oil,oil,oil,oil,plasma,plasma,plasma,plasma,metal_scrap,metal_scrap,metal_scrap,metal_scrap,metal_scrap,acid,acid,oil,oil,oil,oil,oil,oil,oil,plasma,plasma,plasma,plasma,plasma,smoke,plasma,plasma,fire,smoke,plasma,metal_scrap,metal_scrap,metal_scrap,metal_scrap,metal_scrap,metal_scrap,electric_cluster_bomb,electric_cluster_bomb,flash,flash,flash,flash,flash,acid_gas,acid_gas,acid_gas,acid,oil,oil,oil,oil,oil,oil,oil,oil,oil,oil,plasma,plasma,plasma,plasma,plague,plague,plague,plague,plague,plague,radiation,radiation,radiation,radiation,radiation,radiation,radiation,radiation,uranium,uranium,uranium,uranium,uranium,uranium,greek_fire,greek_fire,greek_fire,greek_fire,greek_fire,antimatter,antimatter,antimatter,antimatter,antimatter,smoke_grenade,antimatter,smoke_grenade,fireball,flash,acid_gas,acid_gas,acid_gas,plague,plague,plague,plague,plague,plague,radiation,radiation,radiation,radiation,radiation,radiation,radiation,radiation,uranium,uranium,uranium,uranium,uranium,uranium,greek_fire,greek_fire,greek_fire,greek_fire,greek_fire,antimatter,antimatter,antimatter,antimatter,antimatter,smoke_grenade,antimatter,flash,acid_gas,acid_gas,acid_gas,radiation,radiation,radiation,radiation,plague,acid_gas,acid_gas,acid_gas,chlorine,chlorine,chlorine"
|
||||
amalgamatedBombFire = "plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,plasma,smoke,plasma,plasma,fire,smoke,fire,smoke,plasma,metal_scrap,metal_scrap,metal_scrap,metal_scrap,metal_scrap,acid,acid,oil,oil,oil,oil,oil,oil,oil,plasma,plasma,plasma,plasma,plasma,smoke,plasma,plasma,fire,smoke,plasma,metal_scrap,metal_scrap,metal_scrap,metal_scrap,metal_scrap,metal_scrap,flash,flash,flash,flash,flash,acid_gas,acid_gas,acid_gas,acid,oil,oil,oil,oil,oil,oil,oil,oil,oil,oil,plasma,plasma,plasma,plasma,metal_scrap,metal_scrap,metal_scrap,metal_scrap,metal_scrap,acid,acid,oil,oil,oil,oil,oil,oil,oil,plasma,plasma,plasma,plasma,plasma,smoke,plasma,plasma,fire,smoke,plasma,metal_scrap,metal_scrap,metal_scrap,metal_scrap,metal_scrap,metal_scrap,electric_cluster_bomb,electric_cluster_bomb,flash,flash,flash,flash,flash,acid_gas,acid_gas,acid_gas,acid,oil,oil,oil,oil,oil,oil,oil,oil,oil,oil,plasma,plasma,plasma,plasma,plague,plague,plague,plague,plague,plague,radiation,radiation,radiation,radiation,radiation,radiation,radiation,radiation,uranium,uranium,uranium,uranium,uranium,uranium,greek_fire,greek_fire,greek_fire,greek_fire,greek_fire,antimatter,antimatter,antimatter,antimatter,antimatter,smoke_grenade,antimatter,smoke_grenade,fireball,flash,acid_gas,acid_gas,acid_gas,plague,plague,plague,plague,plague,plague,radiation,radiation,radiation,radiation,radiation,radiation,radiation,radiation,uranium,uranium,uranium,uranium,uranium,uranium,greek_fire,greek_fire,greek_fire,greek_fire,greek_fire,antimatter,antimatter,antimatter,antimatter,antimatter,smoke_grenade,antimatter,flash,acid_gas,acid_gas,acid_gas,radiation,radiation,radiation,radiation,plague,acid_gas,acid_gas,acid_gas,chlorine,chlorine,chlorine"
|
||||
|
||||
elements.amalgamated_bomb = {
|
||||
elements.amalgamated_bomb = {
|
||||
color: ["#FF0000","#FF0000","#FFFF00","#FFFF00","#00FF00","#00FF00","#0000FF","#0000FF"],
|
||||
tick: function(pixel) {
|
||||
doDefaults(pixel);
|
||||
|
|
@ -253,9 +155,9 @@ elements.amalgamated_bomb = {
|
|||
temp: 7065,
|
||||
density: 158000,
|
||||
excludeRandom: true,
|
||||
};
|
||||
};
|
||||
|
||||
elements.op_hottester_bomb = {
|
||||
elements.op_hottester_bomb = {
|
||||
color: "#cc436e",
|
||||
properties: {
|
||||
radius: 15, //just so people can edit it per pixel to be stupidly high
|
||||
|
|
@ -290,9 +192,9 @@ elements.op_hottester_bomb = {
|
|||
temp: 7065,
|
||||
density: 1900,
|
||||
excludeRandom: true,
|
||||
};
|
||||
};
|
||||
|
||||
for (var i = 2; i <= bombAmount + 1; i++) {
|
||||
for (var i = 2; i <= bombAmount + 1; i++) {
|
||||
elements[`bomb_${i}`] = {
|
||||
name: `bomb ${i}`,
|
||||
color: "#624c41",
|
||||
|
|
@ -308,9 +210,9 @@ for (var i = 2; i <= bombAmount + 1; i++) {
|
|||
desc: `${5*(i+1)/10} times the radius of the regular bomb`,
|
||||
cooldown: defaultCooldown,
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
elements.anti_bomb = {
|
||||
elements.anti_bomb = {
|
||||
color: "#625c71",
|
||||
behavior: [
|
||||
"M2|M1 AND EX:10|M2",
|
||||
|
|
@ -322,9 +224,9 @@ elements.anti_bomb = {
|
|||
density: 1300,
|
||||
excludeRandom: true,
|
||||
cooldown: defaultCooldown,
|
||||
};
|
||||
};
|
||||
|
||||
for (var i = 2; i <= bombAmount + 1; i++) {
|
||||
for (var i = 2; i <= bombAmount + 1; i++) {
|
||||
elements[`anti_bomb_${i}`] = {
|
||||
color: "#625c71",
|
||||
behavior: [
|
||||
|
|
@ -339,9 +241,9 @@ for (var i = 2; i <= bombAmount + 1; i++) {
|
|||
desc: `${5*(i+1)/10} times the radius of the regular anti-bomb`,
|
||||
cooldown: defaultCooldown,
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
runAfterLoad(function() {
|
||||
runAfterLoad(function() {
|
||||
if(enabledMods.includes("mods/fey_and_more.js")) {
|
||||
elements.lower_color_copy.breakInto.push("magic")
|
||||
amalgamatedBombFire += ",poisonwater".repeat(8);
|
||||
|
|
@ -385,4 +287,9 @@ runAfterLoad(function() {
|
|||
if(enabledMods.includes("mods/bioooze.js")) {
|
||||
amalgamatedBombFire += ",bioooze".repeat(8);
|
||||
};
|
||||
});
|
||||
});
|
||||
} else {
|
||||
alert(`The ${explodeAtPlusMod} mod is required and has been automatically inserted (reload for this to take effect).`)
|
||||
enabledMods.splice(enabledMods.indexOf(modName),0,explodeAtPlusMod)
|
||||
localStorage.setItem("enabledMods", JSON.stringify(enabledMods));
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue