tag generated elements
This commit is contained in:
parent
13067761de
commit
3766e486c6
|
|
@ -1412,6 +1412,7 @@ if(enabledMods.includes(runAfterAutogenMod) && enabledMods.includes(explodeAtPlu
|
||||||
desc: `Explodes into ${descElement}<br/>Radius: ${5*(bombNumber+1)}`,
|
desc: `Explodes into ${descElement}<br/>Radius: ${5*(bombNumber+1)}`,
|
||||||
temp: firstTemp,
|
temp: firstTemp,
|
||||||
excludeRandom: true,
|
excludeRandom: true,
|
||||||
|
autoType: "bomb",
|
||||||
};
|
};
|
||||||
if(typeof(eLists) === "undefined") {
|
if(typeof(eLists) === "undefined") {
|
||||||
eLists = {};
|
eLists = {};
|
||||||
|
|
@ -1601,6 +1602,7 @@ if(enabledMods.includes(runAfterAutogenMod) && enabledMods.includes(explodeAtPlu
|
||||||
density: 0.6 * (2**cloudType),
|
density: 0.6 * (2**cloudType),
|
||||||
ignoreAir: true,
|
ignoreAir: true,
|
||||||
conduct: 0.01 * (2**cloudType),
|
conduct: 0.01 * (2**cloudType),
|
||||||
|
autoType: "cloud",
|
||||||
};
|
};
|
||||||
|
|
||||||
if(cloudType === 4) { //column tick for heaviester clouds
|
if(cloudType === 4) { //column tick for heaviester clouds
|
||||||
|
|
@ -1762,6 +1764,7 @@ if(enabledMods.includes(runAfterAutogenMod) && enabledMods.includes(explodeAtPlu
|
||||||
},
|
},
|
||||||
related: [bodyName,headName,"creeper"],
|
related: [bodyName,headName,"creeper"],
|
||||||
desc: `Auto-generated creeper.<br/>Explodes into ${descElement}.`,
|
desc: `Auto-generated creeper.<br/>Explodes into ${descElement}.`,
|
||||||
|
autoType: "creeper",
|
||||||
};
|
};
|
||||||
|
|
||||||
eLists.CREEPER.push(placerName);
|
eLists.CREEPER.push(placerName);
|
||||||
|
|
@ -1801,6 +1804,7 @@ if(enabledMods.includes(runAfterAutogenMod) && enabledMods.includes(explodeAtPlu
|
||||||
tick: function(pixel) {
|
tick: function(pixel) {
|
||||||
autoCreeperBodyTick(pixel);
|
autoCreeperBodyTick(pixel);
|
||||||
},
|
},
|
||||||
|
autoType: "creeper",
|
||||||
};
|
};
|
||||||
|
|
||||||
//Head
|
//Head
|
||||||
|
|
@ -1839,6 +1843,7 @@ if(enabledMods.includes(runAfterAutogenMod) && enabledMods.includes(explodeAtPlu
|
||||||
tick: function(pixel) {
|
tick: function(pixel) {
|
||||||
autoCreeperHeadTick(pixel);
|
autoCreeperHeadTick(pixel);
|
||||||
},
|
},
|
||||||
|
autoType: "creeper",
|
||||||
};
|
};
|
||||||
if(isAfterScriptLoading) {
|
if(isAfterScriptLoading) {
|
||||||
elementCount += 3; //placer, body, head
|
elementCount += 3; //placer, body, head
|
||||||
|
|
@ -2018,6 +2023,7 @@ if(enabledMods.includes(runAfterAutogenMod) && enabledMods.includes(explodeAtPlu
|
||||||
category: "auto_fey",
|
category: "auto_fey",
|
||||||
temp: firstTemp,
|
temp: firstTemp,
|
||||||
hardness: 1,
|
hardness: 1,
|
||||||
|
autoType: "fairy",
|
||||||
};
|
};
|
||||||
if(typeof(eLists) === "undefined") {
|
if(typeof(eLists) === "undefined") {
|
||||||
eLists = {};
|
eLists = {};
|
||||||
|
|
@ -2192,6 +2198,7 @@ if(enabledMods.includes(runAfterAutogenMod) && enabledMods.includes(explodeAtPlu
|
||||||
category: "spouts",
|
category: "spouts",
|
||||||
temp: firstTemp,
|
temp: firstTemp,
|
||||||
hardness: 1,
|
hardness: 1,
|
||||||
|
autoType: "spout",
|
||||||
};
|
};
|
||||||
if(!randomExcl) {
|
if(!randomExcl) {
|
||||||
if(typeof(spoutChoices) === "undefined") {
|
if(typeof(spoutChoices) === "undefined") {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue