forked from copygirl/heck
parent
845b275915
commit
488e6fd6c2
6 changed files with 47 additions and 0 deletions
@ -0,0 +1,6 @@ |
||||
// priority: 0
|
||||
|
||||
onEvent("jei.hide.items", event => { |
||||
event.hide("thermal:coal_coke"); |
||||
event.hide("thermal:coal_coke_block"); |
||||
}); |
@ -0,0 +1,10 @@ |
||||
{ |
||||
"type": "thermal:pyrolyzer", |
||||
"ingredient": { "item": "minecraft:coal" }, |
||||
"result": [ |
||||
{ "item": "immersiveengineering:coal_coke" }, |
||||
{ "item": "thermal:tar", "chance": 0.25 }, |
||||
{ "fluid": "immersiveengineering:creosote", "amount": 250 } |
||||
], |
||||
"experience": 0.15 |
||||
} |
@ -0,0 +1,9 @@ |
||||
{ |
||||
"type": "thermal:pyrolyzer", |
||||
"ingredient": { "tag": "minecraft:logs" }, |
||||
"result": [ |
||||
{ "item": "minecraft:charcoal" }, |
||||
{ "fluid": "immersiveengineering:creosote", "amount": 125 } |
||||
], |
||||
"experience": 0.15 |
||||
} |
@ -0,0 +1,13 @@ |
||||
// priority: 0
|
||||
|
||||
onEvent("recipes", event => { |
||||
event.remove({ input: "thermal:coal_coke" }); |
||||
event.remove({ output: "thermal:coal_coke" }); |
||||
event.remove({ input: "thermal:coal_coke_block" }); |
||||
event.remove({ output: "thermal:coal_coke_block" }); |
||||
}); |
||||
|
||||
onEvent("item.tags", event => { |
||||
event.removeAllTagsFrom("thermal:coal_coke"); |
||||
event.removeAllTagsFrom("thermal:coal_coke_block"); |
||||
}); |
Loading…
Reference in new issue