parent
ece939eba7
commit
e6a68f0e0a
10 changed files with 77 additions and 7 deletions
@ -0,0 +1,10 @@ |
|||||||
|
// priority: 0
|
||||||
|
|
||||||
|
onEvent("jei.hide.items", event => { |
||||||
|
event.hide("tconstruct:honey_bucket"); |
||||||
|
}); |
||||||
|
|
||||||
|
onEvent("jei.hide.fluids", event => { |
||||||
|
event.hide("tconstruct:honey"); |
||||||
|
event.hide("cofh_core:honey"); |
||||||
|
}); |
@ -0,0 +1,6 @@ |
|||||||
|
{ |
||||||
|
"type": "mantle:empty_item", |
||||||
|
"input": { "item": "minecraft:honey_bottle" }, |
||||||
|
"filled": "minecraft:glass_bottle", |
||||||
|
"fluid": { "fluid": "create:honey", "amount": 250 } |
||||||
|
} |
@ -0,0 +1,6 @@ |
|||||||
|
{ |
||||||
|
"type": "tconstruct:entity_melting", |
||||||
|
"entity": { "type": "minecraft:bee" }, |
||||||
|
"result": { "fluid": "create:honey", "amount": 25 }, |
||||||
|
"damage": 2 |
||||||
|
} |
@ -0,0 +1,7 @@ |
|||||||
|
{ |
||||||
|
"type": "tconstruct:melting", |
||||||
|
"ingredient": { "item": "minecraft:honey_block" }, |
||||||
|
"result": { "fluid": "create:honey", "amount": 1000 }, |
||||||
|
"temperature": 1, |
||||||
|
"time": 94 |
||||||
|
} |
@ -0,0 +1,9 @@ |
|||||||
|
{ |
||||||
|
"type": "thermal:centrifuge", |
||||||
|
"ingredient": { "item": "minecraft:honey_bottle" }, |
||||||
|
"result": [ |
||||||
|
{ "item": "minecraft:glass_bottle" }, |
||||||
|
{ "fluid": "create:honey", "amount": 250 } |
||||||
|
], |
||||||
|
"energy": 400 |
||||||
|
} |
@ -0,0 +1,5 @@ |
|||||||
|
{ |
||||||
|
"type": "thermal:centrifuge", |
||||||
|
"ingredient": { "item": "minecraft:honeycomb" }, |
||||||
|
"result": [{ "fluid": "create:honey", "amount": 100 }] |
||||||
|
} |
@ -0,0 +1,6 @@ |
|||||||
|
{ |
||||||
|
"type": "thermal:chiller", |
||||||
|
"ingredient": { "fluid": "create:honey", "amount": 1000 }, |
||||||
|
"result": [{ "item": "minecraft:honey_block" }], |
||||||
|
"energy": 2000 |
||||||
|
} |
@ -0,0 +1,6 @@ |
|||||||
|
{ |
||||||
|
"type": "thermal:crucible", |
||||||
|
"ingredient": { "item": "minecraft:honey_block" }, |
||||||
|
"result": [{ "fluid": "create:honey", "amount": 1000 }], |
||||||
|
"energy": 2000 |
||||||
|
} |
@ -1,11 +1,12 @@ |
|||||||
// priority: 0
|
// priority: 0
|
||||||
|
|
||||||
onEvent("fluid.tags", event => { |
onEvent("fluid.tags", event => { |
||||||
event.remove("minecraft:water", "create:chocolate"); |
event.get("minecraft:water").remove( |
||||||
event.remove("minecraft:water", "create:honey"); |
"create:chocolate", "create:honey", |
||||||
event.remove("minecraft:water", "create_confectionery:black_chocolate"); |
"create_confectionery:black_chocolate", |
||||||
event.remove("minecraft:water", "create_confectionery:caramel"); |
"create_confectionery:caramel", |
||||||
event.remove("minecraft:water", "create_confectionery:hot_chocolate"); |
"create_confectionery:hot_chocolate", |
||||||
event.remove("minecraft:water", "create_confectionery:ruby_chocolate"); |
"create_confectionery:ruby_chocolate", |
||||||
event.remove("minecraft:water", "create_confectionery:white_chocolate"); |
"create_confectionery:white_chocolate", |
||||||
|
); |
||||||
}); |
}); |
||||||
|
@ -0,0 +1,14 @@ |
|||||||
|
// priority: 0
|
||||||
|
|
||||||
|
// TODO: Not sure why, but this doesn't work :(
|
||||||
|
// onEvent("recipes", event => {
|
||||||
|
// for (let honey of [ "tconstruct:honey", "cofh_core:honey" ])
|
||||||
|
// for (let amount of [ 25, 100, 250, 1000 ])
|
||||||
|
// event.replaceOutput({ }, Fluid.of(honey, amount), Fluid.of("create:honey", amount));
|
||||||
|
// });
|
||||||
|
|
||||||
|
onEvent("fluid.tags", event => { |
||||||
|
event.removeAll("tconstruct:honey"); |
||||||
|
event.removeAllTagsFrom("#tconstruct:honey"); |
||||||
|
event.removeAllTagsFrom("cofh_core:honey"); |
||||||
|
}); |
Loading…
Reference in new issue