Skip to content

Commit

Permalink
add recipe for skystone
Browse files Browse the repository at this point in the history
skystone dust made in the classic construction core manner
  • Loading branch information
ursamina committed Jul 6, 2024
1 parent e080d1d commit a8639b7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions kubejs/server_scripts/building/building_blocks.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
ServerEvents.recipes((event) => {
event.recipes.gtceu
.mixer("skystone_dust")
.itemInputs("gtceu:stone_dust", "#forge:dusts/certus_quartz")
.itemOutputs("2x ae2:sky_dust")
.circuit(1)
.EUt(2)
.duration(20);


event.recipes.gtceu
.construction_core("skystone_dust")
.itemInputs("gtceu:stone_dust", "#forge:dusts/certus_quartz")
.itemOutputs("8x ae2:sky_dust")
.circuit(1)
.EUt(2)
.duration(20);
})

0 comments on commit a8639b7

Please sign in to comment.