Update advanced_colonies.js
This commit is contained in:
parent
9844929203
commit
aae3006fca
|
|
@ -5,6 +5,7 @@ elements.male_davler = {
|
||||||
state: "solid",
|
state: "solid",
|
||||||
tempHigh: 125,
|
tempHigh: 125,
|
||||||
stateHigh: "dead_bug",
|
stateHigh: "dead_bug",
|
||||||
|
breakInto: "davler_remains",
|
||||||
reactions: {
|
reactions: {
|
||||||
"sugar": { elem2: null },
|
"sugar": { elem2: null },
|
||||||
"meat": { elem2: null },
|
"meat": { elem2: null },
|
||||||
|
|
@ -22,6 +23,7 @@ elements.female_davler = {
|
||||||
state: "solid",
|
state: "solid",
|
||||||
tempHigh: 125,
|
tempHigh: 125,
|
||||||
stateHigh: "dead_bug",
|
stateHigh: "dead_bug",
|
||||||
|
breakInto: "davler_remains",
|
||||||
reactions: {
|
reactions: {
|
||||||
"sugar": { elem2: null },
|
"sugar": { elem2: null },
|
||||||
"meat": { elem2: null },
|
"meat": { elem2: null },
|
||||||
|
|
@ -39,6 +41,7 @@ elements.davler_queen = {
|
||||||
state: "solid",
|
state: "solid",
|
||||||
tempHigh: 150,
|
tempHigh: 150,
|
||||||
stateHigh: "davler_remains",
|
stateHigh: "davler_remains",
|
||||||
|
breakInto: "davler_remains",
|
||||||
properties: {
|
properties: {
|
||||||
"eaten": 0
|
"eaten": 0
|
||||||
},
|
},
|
||||||
|
|
@ -65,6 +68,7 @@ elements.larvae = {
|
||||||
state: "solid",
|
state: "solid",
|
||||||
tempHigh: 150,
|
tempHigh: 150,
|
||||||
stateHigh: "dead_bug",
|
stateHigh: "dead_bug",
|
||||||
|
breakInto: "yolk",
|
||||||
properties: {
|
properties: {
|
||||||
"hatch": 300,
|
"hatch": 300,
|
||||||
"fertilized": false
|
"fertilized": false
|
||||||
|
|
@ -96,6 +100,8 @@ elements.davler_remains = {
|
||||||
color: elements.dead_bug.color,
|
color: elements.dead_bug.color,
|
||||||
behavior: behaviors.POWDER,
|
behavior: behaviors.POWDER,
|
||||||
state: "solid",
|
state: "solid",
|
||||||
|
tempHigh: 150,
|
||||||
|
stateHigh: ["ash", "fire"],
|
||||||
category: "davlers",
|
category: "davlers",
|
||||||
reactions: {
|
reactions: {
|
||||||
"yolk": { elem2: "artificial_larvae", elem1: null }
|
"yolk": { elem2: "artificial_larvae", elem1: null }
|
||||||
|
|
@ -109,6 +115,7 @@ elements.artificial_larvae = {
|
||||||
state: "solid",
|
state: "solid",
|
||||||
tempHigh: 150,
|
tempHigh: 150,
|
||||||
stateHigh: "dead_bug",
|
stateHigh: "dead_bug",
|
||||||
|
breakInto: "yolk",
|
||||||
properties: {
|
properties: {
|
||||||
"hatch": 450,
|
"hatch": 450,
|
||||||
"fertilized": false
|
"fertilized": false
|
||||||
|
|
@ -136,4 +143,4 @@ elements.artificial_larvae = {
|
||||||
"baking_soda": { elem1: "dead_bug" },
|
"baking_soda": { elem1: "dead_bug" },
|
||||||
"male_davler": { func: function(pixel){pixel.fertilized = true } }
|
"male_davler": { func: function(pixel){pixel.fertilized = true } }
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue