fix behavior and burnInto

This commit is contained in:
Laetitia (O-01-67) 2022-11-13 13:32:45 -05:00 committed by GitHub
parent 80e006253b
commit 722996ecae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 6 deletions

View File

@ -1,27 +1,30 @@
elements.ruby = {
color: ["#ff0000","#f44336","#990000","#ea9999","#f4cccc"], behavior: [
color: ["#ff0000","#f44336","#990000","#ea9999","#f4cccc"],
behavior: behaviors.POWDER,
category: "powders",
state: "solid",
density: 265,
burn: 1000,
burnTime: 300,
burnInto: ["carbon dioxide ",null,null],
burnInto: ["carbon_dioxide",null,null],
};
elements.sappire = {
color: ["#2986cc","#16537e","#0086ff","#9da0f7","#54aeff"], behavior: [
color: ["#2986cc","#16537e","#0086ff","#9da0f7","#54aeff"],
behavior: behaviors.POWDER,
category: "powders",
state: "solid",
density: 265,
burn: 1000,
burnTime: 300,
burnInto: ["carbon dioxide ",null,null],
burnInto: ["carbon_dioxide",null,null],
};
elements.emerald = {
color: ["#6aa84f","#8fce00","#7cc95a","#8fce00","#c4dabd"], behavior: [
color: ["#6aa84f","#8fce00","#7cc95a","#8fce00","#c4dabd"],
behavior: behaviors.POWDER,
category: "powders",
state: "solid",
density: 265,
burn: 1000,
burnTime: 300,
burnInto: ["carbon dioxide ",null,null],
burnInto: ["carbon_dioxide",null,null],
}