mirror of
https://git.fellies.tech/minecraft/fellies.git
synced 2021-02-13 10:18:48 +00:00
20 lines
728 B
JavaScript
20 lines
728 B
JavaScript
// priority: 99
|
|
|
|
/*
|
|
* Supported types:
|
|
* furnace, sawmill, pulverizer, smelter, centrifuge, press,
|
|
* crucible, chiller, refinery, brewer, bottler,
|
|
* insolator, pulverizer_catalyst, smelter_catalyst, insolator_catalyst,
|
|
* stirling_fuel, compression_fuel, magmatic_fuel, numismatic_fuel, lapidary_fuel
|
|
*
|
|
* Url: https://www.curseforge.com/minecraft/mc-mods/kubejs-thermal
|
|
*/
|
|
|
|
events.listen('recipes', e => {
|
|
const {
|
|
furnace, sawmill, pulverizer, smelter, centrifuge, press,
|
|
crucible, chiller, refinery, brewer, bottler,
|
|
insolator, pulverizer_catalyst, smelter_catalyst, insolator_catalyst,
|
|
stirling_fuel, compression_fuel, magmatic_fuel, numismatic_fuel, lapidary_fuel
|
|
} = e.recipes.thermal;
|
|
}); |