Skip to content

Commit

Permalink
Fixes to latest PR
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePansmith committed May 21, 2024
1 parent 813d1d2 commit 41cc196
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions kubejs/assets/gtceu/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
"block.gtceu.dimensional_superassembler":"Dimensional Superassembler",
"gtceu.dimensional_superassembler.desc":"Uses dimensional warping to process hundreds of assembly line recipes at once.",
"gtceu.subatomic_digital_assembler.desc": "§8A complex machine capable of synthetizing certain technological marvels when provided with the required data",
"gtceu.quintessence_infuser":"Quintessence Infusing",
"block.gtceu.quintessence_infuser":"Quintessence Infuser",
"block.gtceu.quintessence_infuser.desc": "Uses intense rotational speeds to infuse large amounts of souls into objects at once.",

Expand Down
3 changes: 2 additions & 1 deletion kubejs/client_scripts/tooltips.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ ItemEvents.tooltip(tooltip => {
tooltip.add('gtceu:hyperbolic_microverse_projector', Text.translatable('gtceu.hyperbolic_microverse_projector.desc'))
tooltip.add('gtceu:hyperbolic_microverse_projector', Text.translatable('gtceu.hyperbolic_microverse_projector_2.desc'))
tooltip.add('gtceu:subatomic_digital_assembler', Text.translatable('gtceu.subatomic_digital_assembler.desc'))
tooltip.add('gtceu:quintessence_infuser', Text.translatable('gtceu.quintessence_infuser.desc'))

tooltip.addAdvanced('gtceu:naquadah_reactor_i', (item, adv, text) => {
text.add(1, Text.gray('An advanced reactor that produces energy from the decay of Enriched Naquadah and Naquadria bolts'))
Expand All @@ -90,7 +91,7 @@ ItemEvents.tooltip(tooltip => {
})

tooltip.add('gcyr:rocket_scanner', Text.darkGray('Rotate the multiblock if your rocket doesnt build.'))
tooltip.add(['gtceu:hyperbolic_microverse_projector', 'gtceu:dimensional_superassembler', 'gtceu:sculk_reactor'], 'Can parallelize with Parallel Control Hatches.')
tooltip.add(['gtceu:hyperbolic_microverse_projector', 'gtceu:dimensional_superassembler', 'gtceu:sculk_reactor', 'gtceu:quintessence_infuser'], 'Can parallelize with Parallel Control Hatches.')

//Sophisticated Storage
tooltip.add(['sophisticatedstorage:diamond_barrel', 'sophisticatedstorage:diamond_chest', 'sophisticatedstorage:diamond_shulker_box'], 'Use an Iron to Aluminium Tier Upgrade on the previous tier to obtain')
Expand Down
9 changes: 9 additions & 0 deletions kubejs/startup_scripts/Block_Registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,15 @@ StartupEvents.registry("block", event => {
.tagBlock("mineable/pickaxe")
.requiresTool(true)
.textureOverrideRenderer('minecraft:block/cube_all', {'all': new ResourceLocation('kubejs', 'block/sculk_compound/coil')})

event.create("dark_soularium_casing", 'gtceu:renderer')
.displayName("Dark Soularium Casing")
.soundType('metal')
.hardness(2.5)
.resistance(2.5)
.requiresTool(true)
.tagBlock("mineable/pickaxe")
.textureOverrideRenderer('minecraft:block/cube_all', {'all': new ResourceLocation('kubejs', 'block/soularium/casing')})

// Post-Tank MB blocks
event.create('omnic_matrix_machine_casing', 'gtceu:renderer')
Expand Down
1 change: 0 additions & 1 deletion kubejs/startup_scripts/Multiblock_Registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -631,4 +631,3 @@ GTCEuStartupEvents.registry('gtceu:machine', event => {
"gtceu:block/multiblock/implosion_compressor", false)
})

})

0 comments on commit 41cc196

Please sign in to comment.