Update obsidian.js

This commit is contained in:
Jayd-Rubies 2024-01-06 10:31:38 -05:00 committed by GitHub
parent 14297152e1
commit cbf756da2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 2 deletions

View File

@ -3,6 +3,7 @@ elements.obsidian = {
behavior: behaviors.SOLID,
category: "solids",
state: "solid",
density: 2380,
reactions: {
"sand": { elem1: "obsidian_shard" },
"dirt": { elem1: "obsidian_shard" },
@ -22,8 +23,29 @@ elements.obsidian = {
}
},
elements.obsidian_shard = {
color: ["#343434" , "#313639"],
color: ["#343434", "#313639"],
behavior: behaviors.POWDER,
category: "powders",
state: "solid",
density: 2380,
reactions: {
"glue": { elem1: "obsidian" },
}
},
elements.magma = {
color: ["#ff6f00","#ff8c00","#ff4d00"],
behavior: behaviors.MOLTEN,
reactions: {
"ice": { elem1: "basalt" },
"ash": { elem1: "molten_tuff", "elem2":null },
"molten_ash": { elem1: "molten_tuff", "elem2":null },
"charcoal": { elem2:"diamond", tempMin:800, chance:0.005, oneway:true },
},
temp: 1200,
tempLow: 800,
stateLow: ["basalt","basalt","basalt","rock","obsidian_shard","obsidian"],
viscosity: 10000,
category: "liquids",
state: "liquid",
density: 2725
}