Skip to content

Commit

Permalink
further squashing of gemline
Browse files Browse the repository at this point in the history
  • Loading branch information
SparkedTheorem committed Feb 1, 2025
1 parent 740f32d commit 9a992f6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 38 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
37 changes: 8 additions & 29 deletions kubejs/server_scripts/gregtech/ultimate_gem.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,26 +22,19 @@ ServerEvents.recipes(event => {

event.recipes.gtceu.large_chemical_reactor('gem_of_the_end')
.itemInputs('kubejs:ender_gem', '2x kubejs:ender_star', 'kubejs:endest_star')
.inputFluids('kubejs:molten_aerotheum 1500', 'gtceu:dragon_breath 500')
.inputFluids('kubejs:molten_aerotheum 1500')
.itemOutputs('kubejs:gem_of_the_end')
.duration(600)
.EUt(GTValues.VHA[GTValues.UHV])

// Abyss Crystal

event.recipes.gtceu.large_chemical_reactor('abyss_crystal_base')
.itemInputs('4x gtceu:black_quartz_dust', '2x gtceu:fluix_dust')
.itemInputs('12x gtceu:black_quartz_dust', '12x gtceu:fluix_dust')
.notConsumable('gtceu:blacklight')
.inputFluids('gtceu:void_empowered 576', 'gtceu:palis_empowered 720')
.itemOutputs('3x kubejs:abyss_crystal_base')
.duration(900)
.EUt(GTValues.VHA[GTValues.LuV])

event.recipes.gtceu.mixer('abyss_crystal_mixture')
.itemInputs('6x kubejs:abyss_crystal_base', '10x gtceu:sculk_dust')
.inputFluids('kubejs:molten_petrotheum 300')
.inputFluids('gtceu:void_empowered 576', 'gtceu:palis_empowered 720', 'kubejs:molten_petrotheum 300')
.outputFluids('gtceu:abyss_crystal_mixture 1000')
.duration(300)
.duration(1500)
.EUt(GTValues.VHA[GTValues.UHV])

event.recipes.gtceu.fluid_solidifier('uncut_abyss_crystal')
Expand Down Expand Up @@ -86,25 +79,11 @@ ServerEvents.recipes(event => {
DimPureCrystal("pure_crystal_tnt", '4x minecraft:tnt');
DimPureCrystal("pure_crystal_powderbarrel", '8x gtceu:powderbarrel');

event.recipes.gtceu.laser_engraver('blank_to_dim_pure_crystal')
.itemInputs('kubejs:blank_pure_crystal')
.chancedInput('#forge:lenses/red', 1000, 0)
.itemOutputs('kubejs:dim_pure_crystal')
.duration(1200)
.EUt(GTValues.VHA[GTValues.UV])

event.recipes.gtceu.laser_engraver('dim_to_pale_pure_crystal')
.itemInputs('kubejs:dim_pure_crystal')
.chancedInput('#forge:lenses/blue', 2000, 0)
.itemOutputs('kubejs:pale_pure_crystal')
.duration(1800)
.EUt(GTValues.VHA[GTValues.UHV])

event.recipes.gtceu.laser_engraver('pale_to_bright_pure_crystal')
.itemInputs('kubejs:pale_pure_crystal')
.chancedInput('#forge:lenses/green', 3000, 0)
event.recipes.gtceu.omnic_forge('blank_to_bright_pure_crystal')
.itemInputs('kubejs:blank_pure_crystal', '#forge:lenses/red', '#forge:lenses/blue', '#forge:lenses/green')
.chancedInput('gtceu:uev_emitter', 2000, 0)
.itemOutputs('kubejs:bright_pure_crystal')
.duration(2100)
.duration(1000)
.EUt(GTValues.VHA[GTValues.UEV])

event.recipes.gtceu.chemical_bath('pure_crystal_final')
Expand Down
9 changes: 0 additions & 9 deletions kubejs/startup_scripts/registry/item_registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -444,9 +444,6 @@ StartupEvents.registry('item', event => {
event.create('gem_of_the_end')
.displayName("Gem of the End")
.texture("kubejs:item/ultimategem/gem_of_the_end")
event.create('abyss_crystal_base')
.displayName("Abyss Crystal Base")
.texture("kubejs:item/ultimategem/abyss_crystal_base")
event.create('uncut_abyss_crystal')
.displayName("Uncut Abyss Crystal")
.texture("kubejs:item/ultimategem/uncut_abyss_crystal")
Expand All @@ -459,12 +456,6 @@ StartupEvents.registry('item', event => {
event.create('blank_pure_crystal')
.displayName("Blank Pure Crystal")
.texture("kubejs:item/ultimategem/blank_pure_crystal")
event.create('dim_pure_crystal')
.displayName("Dim Pure Crystal")
.texture("kubejs:item/ultimategem/dim_pure_crystal")
event.create('pale_pure_crystal')
.displayName("Pale Pure Crystal")
.texture("kubejs:item/ultimategem/pale_pure_crystal")
event.create('bright_pure_crystal')
.displayName("Bright Pure Crystal")
.texture("kubejs:item/ultimategem/bright_pure_crystal")
Expand Down

0 comments on commit 9a992f6

Please sign in to comment.