added recycling recipes for akistor carts, hid the postilion since it doesn't seem to summon any entity?
the recycling is just brass but who cares about wood dust really #2227
This commit is contained in:
parent
14f90277db
commit
848fe46ec0
3 changed files with 26 additions and 0 deletions
|
|
@ -6,4 +6,25 @@ const registerAsticorCartsRecipes = (event) => {
|
|||
event.remove({ id: 'astikorcarts:supply_cart' })
|
||||
event.remove({ id: 'astikorcarts:plow' })
|
||||
event.remove({ id: 'astikorcarts:wheel' })
|
||||
|
||||
event.recipes.gtceu.macerator(`tfg:recycle_astikor_animal_cart`)
|
||||
.itemInputs('#tfcastikorcarts:animal_cart')
|
||||
.itemOutputs('#forge:dusts/brass')
|
||||
.duration(100)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.macerator(`tfg:recycle_astikor_supply_cart`)
|
||||
.itemInputs('#tfcastikorcarts:supply_cart')
|
||||
.itemOutputs('#forge:dusts/brass')
|
||||
.duration(100)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.macerator(`tfg:recycle_astikor_plow`)
|
||||
.itemInputs('#tfcastikorcarts:plow')
|
||||
.itemOutputs('#forge:dusts/brass')
|
||||
.duration(100)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue