implemented slag chance array
note: slag conflict unfixed
This commit is contained in:
parent
3c7496dd96
commit
53d3c78d74
|
|
@ -28,7 +28,7 @@ elements.copper_concentrate = {
|
||||||
color: ["#343c27","#4f4f4f"],
|
color: ["#343c27","#4f4f4f"],
|
||||||
behavior: behaviors.POWDER,
|
behavior: behaviors.POWDER,
|
||||||
reactions: {
|
reactions: {
|
||||||
borax: { "elem1": "fluxed_copper_concentrate", "elem2": "slag", "chance": 0.1 }, //doesn't fix infinite slag; hopefully we get arrays in reacts soon
|
borax: { "elem1": "fluxed_copper_concentrate", "elem2": ["slag",null,null,null,null,null,null,null,null,null] },
|
||||||
},
|
},
|
||||||
tempHigh: 1000,
|
tempHigh: 1000,
|
||||||
stateHigh: "magma",
|
stateHigh: "magma",
|
||||||
|
|
@ -58,7 +58,7 @@ elements.matte_copper = {
|
||||||
color: "#96786d",
|
color: "#96786d",
|
||||||
behavior: behaviors.WALL,
|
behavior: behaviors.WALL,
|
||||||
reactions: {
|
reactions: {
|
||||||
borax: { "elem1": "fluxed_matte_copper", "elem2": "slag", chance: 0.1 }, //see last comment
|
borax: { "elem1": "fluxed_matte_copper", "elem2": ["slag",null,null,null,null,null,null,null,null,null] },
|
||||||
},
|
},
|
||||||
tempHigh: 1050,
|
tempHigh: 1050,
|
||||||
stateHigh: "molten_matte_copper",
|
stateHigh: "molten_matte_copper",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue