Fixed bug amber color
This commit is contained in:
parent
30df21c3b9
commit
45090dbbac
112
mods/fossils.js
112
mods/fossils.js
|
|
@ -95,6 +95,39 @@ elements.human_fossil = {
|
||||||
breakInto: ["rock","gravel","gravel","gravel","sand"],
|
breakInto: ["rock","gravel","gravel","gravel","sand"],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
elements.dino_fossil = {
|
||||||
|
color: ["#bbb3ae","#b4b4b4","#c0c0c0"],
|
||||||
|
behavior: [
|
||||||
|
"XX|XX|XX",
|
||||||
|
"XX|XX|XX",
|
||||||
|
"M2%75|M1|M2%75",
|
||||||
|
],
|
||||||
|
reactions: {
|
||||||
|
"water": {elem1: "wet_sand", chance: 0.00035},
|
||||||
|
"salt_water": {elem1: "wet_sand", chance: 0.0005},
|
||||||
|
"sugar_water": {elem1: "wet_sand", chance: 0.0004},
|
||||||
|
"seltzer": {elem1: "wet_sand", chance: 0.0004},
|
||||||
|
"dirty_water": {elem1: "wet_sand", chance: 0.0004},
|
||||||
|
"soda": {elem1: "wet_sand", chance: 0.0004},
|
||||||
|
"lichen": {elem1: "dirt", chance: 0.0025},
|
||||||
|
"bone": {elem2: "fossil", chance: 0.000025},
|
||||||
|
"bone_marrow": {elem2: "marrow_fossil", chance: 0.00002},
|
||||||
|
"skull": {elem2: ["human_fossil","human_fossil","fossil"], chance: 0.000025},
|
||||||
|
"wood": {elem2: "petrified_wood", chance: 0.000015},
|
||||||
|
"tree_branch": {elem2: "petrified_wood", chance: 0.000015},
|
||||||
|
"grape": {elem2: "juice", chance: 0.1, color2: "#291824"},
|
||||||
|
"wheat": {elem2: "flour"},
|
||||||
|
"primordial_soup": {elem1: "wet_sand", chance: 0.001}
|
||||||
|
},
|
||||||
|
tempHigh: 950,
|
||||||
|
stateHigh: "magma",
|
||||||
|
category: "life",
|
||||||
|
state: "solid",
|
||||||
|
density: 2600,
|
||||||
|
hardness: 0.55,
|
||||||
|
breakInto: ["rock","gravel","gravel","gravel","sand"],
|
||||||
|
};
|
||||||
|
|
||||||
elements.petrified_wood = {
|
elements.petrified_wood = {
|
||||||
color: ["#4e4e3e","#464646","#52533a"],
|
color: ["#4e4e3e","#464646","#52533a"],
|
||||||
hidden:true,
|
hidden:true,
|
||||||
|
|
@ -133,22 +166,22 @@ elements.skull = {
|
||||||
"salt_water": { elem2:"broth", tempMin:70, color2:"#d7db69" },
|
"salt_water": { elem2:"broth", tempMin:70, color2:"#d7db69" },
|
||||||
"sugar_water": { elem2:"broth", tempMin:70, color2:"#d7db69" },
|
"sugar_water": { elem2:"broth", tempMin:70, color2:"#d7db69" },
|
||||||
"seltzer": { elem2:"broth", tempMin:70, color2:"#d7db69" },
|
"seltzer": { elem2:"broth", tempMin:70, color2:"#d7db69" },
|
||||||
"rock": { "elem1": "fossil", chance:0.00005 },
|
"rock": { "elem1": "human_fossil", chance:0.00005 },
|
||||||
"sand": { "elem1": "fossil", chance:0.000035 },
|
"sand": { "elem1": "human_fossil", chance:0.000035 },
|
||||||
"dirt": { "elem1": "fossil", chance:0.00003 },
|
"dirt": { "elem1": "human_fossil", chance:0.00003 },
|
||||||
"tuff": { "elem1": "fossil", chance:0.00005 },
|
"tuff": { "elem1": "human_fossil", chance:0.00005 },
|
||||||
"basalt": { "elem1": "fossil", chance:0.00004 },
|
"basalt": { "elem1": "human_fossil", chance:0.00004 },
|
||||||
"mudstone": { "elem1": "fossil", chance:0.00004 },
|
"mudstone": { "elem1": "human_fossil", chance:0.00004 },
|
||||||
"packed_sand": { "elem1": "fossil", chance:0.00004 },
|
"packed_sand": { "elem1": "human_fossil", chance:0.00004 },
|
||||||
"gravel": { "elem1": "fossil", chance:0.000035 },
|
"gravel": { "elem1": "human_fossil", chance:0.000035 },
|
||||||
"clay": { "elem1": "fossil", chance:0.00003 },
|
"clay": { "elem1": "human_fossil", chance:0.00003 },
|
||||||
"clay_soil": { "elem1": "fossil", chance:0.00003 },
|
"clay_soil": { "elem1": "human_fossil", chance:0.00003 },
|
||||||
"permafrost": { "elem1": "fossil", chance:0.000035 },
|
"permafrost": { "elem1": "human_fossil", chance:0.000035 },
|
||||||
"mulch": { "elem1": "fossil", chance:0.00003 },
|
"mulch": { "elem1": "human_fossil", chance:0.00003 },
|
||||||
"ant_wall": { "elem1": "fossil", chance:0.00002 },
|
"ant_wall": { "elem1": "human_fossil", chance:0.00002 },
|
||||||
"limestone": { "elem1": "fossil", chance:0.00005 },
|
"limestone": { "elem1": "human_fossil", chance:0.00005 },
|
||||||
"quicklime": { "elem1": "fossil", chance:0.000045 },
|
"quicklime": { "elem1": "human_fossil", chance:0.000045 },
|
||||||
"slaked_lime": { "elem1": "fossil", chance:0.000035 },
|
"slaked_lime": { "elem1": "human_fossil", chance:0.000035 },
|
||||||
},
|
},
|
||||||
category:"life",
|
category:"life",
|
||||||
tempHigh: 760,
|
tempHigh: 760,
|
||||||
|
|
@ -168,22 +201,22 @@ elements.dino_bones = {
|
||||||
"salt_water": { elem2:"broth", tempMin:70 },
|
"salt_water": { elem2:"broth", tempMin:70 },
|
||||||
"sugar_water": { elem2:"broth", tempMin:70 },
|
"sugar_water": { elem2:"broth", tempMin:70 },
|
||||||
"seltzer": { elem2:"broth", tempMin:70 },
|
"seltzer": { elem2:"broth", tempMin:70 },
|
||||||
"rock": { "elem1": "fossil", chance:0.00005 },
|
"rock": { "elem1": "dino_fossil", chance:0.00005 },
|
||||||
"sand": { "elem1": "fossil", chance:0.000035 },
|
"sand": { "elem1": "dino_fossil", chance:0.000035 },
|
||||||
"dirt": { "elem1": "fossil", chance:0.00003 },
|
"dirt": { "elem1": "dino_fossil", chance:0.00003 },
|
||||||
"tuff": { "elem1": "fossil", chance:0.00005 },
|
"tuff": { "elem1": "dino_fossil", chance:0.00005 },
|
||||||
"basalt": { "elem1": "fossil", chance:0.00004 },
|
"basalt": { "elem1": "dino_fossil", chance:0.00004 },
|
||||||
"mudstone": { "elem1": "fossil", chance:0.00004 },
|
"mudstone": { "elem1": "dino_fossil", chance:0.00004 },
|
||||||
"packed_sand": { "elem1": "fossil", chance:0.00004 },
|
"packed_sand": { "elem1": "dino_fossil", chance:0.00004 },
|
||||||
"gravel": { "elem1": "fossil", chance:0.000035 },
|
"gravel": { "elem1": "dino_fossil", chance:0.000035 },
|
||||||
"clay": { "elem1": "fossil", chance:0.00003 },
|
"clay": { "elem1": "dino_fossil", chance:0.00003 },
|
||||||
"clay_soil": { "elem1": "fossil", chance:0.00003 },
|
"clay_soil": { "elem1": "dino_fossil", chance:0.00003 },
|
||||||
"permafrost": { "elem1": "fossil", chance:0.000035 },
|
"permafrost": { "elem1": "dino_fossil", chance:0.000035 },
|
||||||
"mulch": { "elem1": "fossil", chance:0.00003 },
|
"mulch": { "elem1": "dino_fossil", chance:0.00003 },
|
||||||
"ant_wall": { "elem1": "fossil", chance:0.00002 },
|
"ant_wall": { "elem1": "dino_fossil", chance:0.00002 },
|
||||||
"limestone": { "elem1": "fossil", chance:0.00005 },
|
"limestone": { "elem1": "dino_fossil", chance:0.00005 },
|
||||||
"quicklime": { "elem1": "fossil", chance:0.000045 },
|
"quicklime": { "elem1": "dino_fossil", chance:0.000045 },
|
||||||
"slaked_lime": { "elem1": "fossil", chance:0.000035 },
|
"slaked_lime": { "elem1": "dino_fossil", chance:0.000035 },
|
||||||
},
|
},
|
||||||
category:"life",
|
category:"life",
|
||||||
tempHigh: 760,
|
tempHigh: 760,
|
||||||
|
|
@ -220,10 +253,10 @@ elements.coal = {
|
||||||
},
|
},
|
||||||
|
|
||||||
elements.bug_amber = {
|
elements.bug_amber = {
|
||||||
color: "#ffc000",
|
color: ["#ffc000","#b67f18","#c86305","#cf7a19","#e4ae3a"],
|
||||||
temp: 20,
|
temp: 20,
|
||||||
tempHigh: 345,
|
tempHigh: 345,
|
||||||
stateHigh: ["smoke","sap","sap","calcium","sugar"],
|
stateHigh: ["smoke","sap","sap","dead_bug","sap"],
|
||||||
breakInto: [null,null,null,"dna","dna","sap","sap","sap","sap","sap","dead_bug"],
|
breakInto: [null,null,null,"dna","dna","sap","sap","sap","sap","sap","dead_bug"],
|
||||||
category: "solids"
|
category: "solids"
|
||||||
},
|
},
|
||||||
|
|
@ -232,7 +265,7 @@ elements.hive_amber = {
|
||||||
color: "#ffc000",
|
color: "#ffc000",
|
||||||
temp: 20,
|
temp: 20,
|
||||||
tempHigh: 345,
|
tempHigh: 345,
|
||||||
stateHigh: ["smoke","honey","honey","calcium","sugar"],
|
stateHigh: ["smoke","smoke","honey","honey","honey","dead_bug","dead_bug","sap"],
|
||||||
breakInto: [null,"dna","dna","honey","honey","honey","honey","honey","sap","dead_bug",null,"dna","dna","honey","honey","honey","honey","honey","sap","dead_bug","bee"],
|
breakInto: [null,"dna","dna","honey","honey","honey","honey","honey","sap","dead_bug",null,"dna","dna","honey","honey","honey","honey","honey","sap","dead_bug","bee"],
|
||||||
category: "solids"
|
category: "solids"
|
||||||
},
|
},
|
||||||
|
|
@ -257,11 +290,12 @@ elements.dinosaur = {
|
||||||
density: 1500,
|
density: 1500,
|
||||||
conduct: 0.25,
|
conduct: 0.25,
|
||||||
reactions: {
|
reactions: {
|
||||||
"bird": { elem2: [null,null,null,null,null,"feather"], chance: 0.3, func: behaviors.FEEDPIXEL },
|
"bird": { elem2: [null,null,null,null,null,null,"blood","feather"], chance: 0.3, func: behaviors.FEEDPIXEL },
|
||||||
"head": { elem2: [null,null,null,null,null,null,null,"blood","blood","skull"], chance: 0.5, func: behaviors.FEEDPIXEL },
|
"head": { elem2: [null,null,null,null,null,null,null,"blood","blood","skull"], chance: 0.5, func: behaviors.FEEDPIXEL },
|
||||||
"body": { elem2: [null,null,null,null,null,null,"blood","blood","bone"], chance: 0.5, func: behaviors.FEEDPIXEL },
|
"body": { elem2: [null,null,null,null,null,null,"blood","blood","bone"], chance: 0.5, func: behaviors.FEEDPIXEL },
|
||||||
"plant": { elem2: null, chance: 0.5, func: behaviors.FEEDPIXEL },
|
"plant": { elem2: null, chance: 0.5, func: behaviors.FEEDPIXEL },
|
||||||
"bone": { elem2: ["bone_marrow","blood",null], chance: 0.3, },
|
"bone": { elem2: ["bone_marrow","blood","quicklime",null,null,null], chance: 0.3, },
|
||||||
|
"skull": { elem2: ["bone_marrow","blood","quicklime",null,null,null], chance: 0.1, },
|
||||||
"bone_marrow": { elem2: ["blood","blood",null], chance: 0.3, func: behaviors.FEEDPIXEL },
|
"bone_marrow": { elem2: ["blood","blood",null], chance: 0.3, func: behaviors.FEEDPIXEL },
|
||||||
"blood": { elem2: null, chance: 0.1, func: behaviors.FEEDPIXEL },
|
"blood": { elem2: null, chance: 0.1, func: behaviors.FEEDPIXEL },
|
||||||
"meat": { elem2: null, chance: 0.5, func: behaviors.FEEDPIXEL },
|
"meat": { elem2: null, chance: 0.5, func: behaviors.FEEDPIXEL },
|
||||||
|
|
@ -269,6 +303,10 @@ elements.dinosaur = {
|
||||||
"cured_meat": { elem2: null, chance: 0.4, func: behaviors.FEEDPIXEL },
|
"cured_meat": { elem2: null, chance: 0.4, func: behaviors.FEEDPIXEL },
|
||||||
"fly": { elem2: null, chance: 0.05, func: behaviors.FEEDPIXEL },
|
"fly": { elem2: null, chance: 0.05, func: behaviors.FEEDPIXEL },
|
||||||
"ant": { elem2: null, chance: 0.05, func: behaviors.FEEDPIXEL },
|
"ant": { elem2: null, chance: 0.05, func: behaviors.FEEDPIXEL },
|
||||||
|
"worm": { elem2: null, chance: 0.05, func: behaviors.FEEDPIXEL },
|
||||||
|
"wood": { elem2: "sawdust", chance: 0.04 },
|
||||||
|
"glass": { elem2: "glass_shard", chance: 0.05 },
|
||||||
|
"concrete": { elem2: "dust", chance: 0.03 },
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue