Fixes for 0.11.6 (#2123)
* Casings and nerf apt * Change Rotor Holder recipes * nerf refrigerant pellet duration
This commit is contained in:
parent
8ecae6d279
commit
f2b15b18ed
3 changed files with 77 additions and 48 deletions
|
|
@ -1620,6 +1620,51 @@ const registerGTCEURecipes = (event) => {
|
||||||
.duration(20 * 24)
|
.duration(20 * 24)
|
||||||
.EUt(GTValues.VA[GTValues.HV])
|
.EUt(GTValues.VA[GTValues.HV])
|
||||||
|
|
||||||
|
// Modify Rotor Holder to require an Assembler
|
||||||
|
|
||||||
|
event.remove({ id: 'gtceu:shaped/rotor_holder_hv' })
|
||||||
|
event.remove({ id: 'gtceu:shaped/rotor_holder_ev' })
|
||||||
|
event.remove({ id: 'gtceu:shaped/rotor_holder_iv' })
|
||||||
|
event.remove({ id: 'gtceu:shaped/rotor_holder_luv' })
|
||||||
|
event.remove({ id: 'gtceu:shaped/rotor_holder_zpm' })
|
||||||
|
event.remove({ id: 'gtceu:shaped/rotor_holder_uv' })
|
||||||
|
|
||||||
|
event.recipes.gtceu.assembler('tfg:rotor_holder_hv')
|
||||||
|
.itemInputs('4x #forge:gears/black_steel', '4x #forge:small_gears/stainless_steel', 'gtceu:hv_machine_hull')
|
||||||
|
.itemOutputs('gtceu:hv_rotor_holder')
|
||||||
|
.duration(20 * 6)
|
||||||
|
.EUt(GTValues.VA[GTValues.HV])
|
||||||
|
|
||||||
|
event.recipes.gtceu.assembler('tfg:rotor_holder_ev')
|
||||||
|
.itemInputs('4x #forge:gears/ultimet', '4x #forge:small_gears/titanium', 'gtceu:ev_machine_hull')
|
||||||
|
.itemOutputs('gtceu:ev_rotor_holder')
|
||||||
|
.duration(20 * 6)
|
||||||
|
.EUt(GTValues.VA[GTValues.EV])
|
||||||
|
|
||||||
|
event.recipes.gtceu.assembler('tfg:rotor_holder_iv')
|
||||||
|
.itemInputs('4x #forge:gears/hssg', '4x #forge:small_gears/tungsten_steel', 'gtceu:iv_machine_hull')
|
||||||
|
.itemOutputs('gtceu:iv_rotor_holder')
|
||||||
|
.duration(20 * 6)
|
||||||
|
.EUt(GTValues.VA[GTValues.IV])
|
||||||
|
|
||||||
|
event.recipes.gtceu.assembler('tfg:rotor_holder_luv')
|
||||||
|
.itemInputs('4x #forge:gears/ruthenium', '4x #forge:small_gears/rhodium_plated_palladium', 'gtceu:luv_machine_hull')
|
||||||
|
.itemOutputs('gtceu:luv_rotor_holder')
|
||||||
|
.duration(20 * 6)
|
||||||
|
.EUt(GTValues.VA[GTValues.LuV])
|
||||||
|
|
||||||
|
event.recipes.gtceu.assembler('tfg:rotor_holder_zpm')
|
||||||
|
.itemInputs('4x #forge:gears/trinium', '4x #forge:small_gears/naquadah_alloy', 'gtceu:zpm_machine_hull')
|
||||||
|
.itemOutputs('gtceu:zpm_rotor_holder')
|
||||||
|
.duration(20 * 6)
|
||||||
|
.EUt(GTValues.VA[GTValues.ZPM])
|
||||||
|
|
||||||
|
event.recipes.gtceu.assembler('tfg:rotor_holder_uv')
|
||||||
|
.itemInputs('4x #forge:gears/tritanium', '4x #forge:small_gears/darmstadtium', 'gtceu:uv_machine_hull')
|
||||||
|
.itemOutputs('gtceu:uv_rotor_holder')
|
||||||
|
.duration(20 * 6)
|
||||||
|
.EUt(GTValues.VA[GTValues.UV])
|
||||||
|
|
||||||
//# Circuit Board
|
//# Circuit Board
|
||||||
|
|
||||||
event.replaceInput({ id: 'gtceu:assembler/phenolic_board' }, '#tfg:wood_dusts', 'tfg:high_density_treated_fiberboard')
|
event.replaceInput({ id: 'gtceu:assembler/phenolic_board' }, '#tfg:wood_dusts', 'tfg:high_density_treated_fiberboard')
|
||||||
|
|
@ -1674,14 +1719,14 @@ const registerGTCEURecipes = (event) => {
|
||||||
.outputFluids(Fluid.of('gtceu:hydrogen', 500))
|
.outputFluids(Fluid.of('gtceu:hydrogen', 500))
|
||||||
.outputFluids(Fluid.of('gtceu:hydrogen', 500))
|
.outputFluids(Fluid.of('gtceu:hydrogen', 500))
|
||||||
.outputFluids(Fluid.of('gtceu:hydrogen', 500))
|
.outputFluids(Fluid.of('gtceu:hydrogen', 500))
|
||||||
.duration(20*120)
|
.duration(20*90)
|
||||||
.EUt(GTValues.VHA[GTValues.HV])
|
.EUt(GTValues.VHA[GTValues.HV])
|
||||||
|
|
||||||
event.recipes.gtceu.distillery('tfg:ammonium_tungstate_to_apt')
|
event.recipes.gtceu.distillery('tfg:ammonium_tungstate_to_apt')
|
||||||
.itemInputs(Item.of('tfg:ammonium_tungstate_dust', 1))
|
.itemInputs(Item.of('tfg:ammonium_tungstate_dust', 1))
|
||||||
.itemOutputs(Item.of('tfg:apt_gem', 1))
|
.itemOutputs(Item.of('tfg:apt_gem', 1))
|
||||||
.outputFluids(Fluid.of('gtceu:hydrogen', 500))
|
.outputFluids(Fluid.of('gtceu:hydrogen', 500))
|
||||||
.duration(20*120)
|
.duration(20*90)
|
||||||
.EUt(GTValues.VHA[GTValues.HV])
|
.EUt(GTValues.VHA[GTValues.HV])
|
||||||
|
|
||||||
event.recipes.gtceu.pyrolyse_oven('tfg:apt')
|
event.recipes.gtceu.pyrolyse_oven('tfg:apt')
|
||||||
|
|
|
||||||
|
|
@ -344,7 +344,7 @@ function registerTFGNuclearRecipes(event) {
|
||||||
.inputFluids(Fluid.of('gtceu:radon', 5))
|
.inputFluids(Fluid.of('gtceu:radon', 5))
|
||||||
.itemOutputs(Item.of('tfg:refrigerant_pellet', 1))
|
.itemOutputs(Item.of('tfg:refrigerant_pellet', 1))
|
||||||
.EUt(GTValues.VA[GTValues.EV])
|
.EUt(GTValues.VA[GTValues.EV])
|
||||||
.duration(20*17)
|
.duration(20*9)
|
||||||
|
|
||||||
// Graphite Moderator Line
|
// Graphite Moderator Line
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.soundType('metal')
|
.soundType('metal')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.mapColor('color_black')
|
.mapColor('color_black')
|
||||||
.speedFactor(1.1)
|
.speedFactor(1.1)
|
||||||
.activeOffset(3.5, 2, 3.5)
|
.activeOffset(3.5, 2, 3.5)
|
||||||
|
|
@ -34,8 +33,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.mapColor('color_light_gray')
|
.mapColor('color_light_gray')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
@ -45,8 +43,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.mapColor('color_light_gray')
|
.mapColor('color_light_gray')
|
||||||
|
|
||||||
event.create('tfg:casings/machine_casing_vacuum_engine_intake', 'gtceu:active')
|
event.create('tfg:casings/machine_casing_vacuum_engine_intake', 'gtceu:active')
|
||||||
|
|
@ -54,8 +51,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.translationKey('block.tfg.casings.machine_casing_vacuum_engine_intake')
|
.translationKey('block.tfg.casings.machine_casing_vacuum_engine_intake')
|
||||||
.soundType('metal')
|
.soundType('metal')
|
||||||
.resistance(6).hardness(5)
|
.resistance(6).hardness(5)
|
||||||
.tagBlock('mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('forge:mineable/wrench')
|
|
||||||
.requiresTool(true)
|
.requiresTool(true)
|
||||||
.mapColor('color_light_gray')
|
.mapColor('color_light_gray')
|
||||||
|
|
||||||
|
|
@ -65,8 +61,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.mapColor('color_red')
|
.mapColor('color_red')
|
||||||
|
|
||||||
event.create('tfg:casings/machine_casing_bioculture_glass')
|
event.create('tfg:casings/machine_casing_bioculture_glass')
|
||||||
|
|
@ -75,8 +70,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.soundType('glass')
|
.soundType('glass')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.mapColor('color_orange')
|
.mapColor('color_orange')
|
||||||
.defaultTranslucent()
|
.defaultTranslucent()
|
||||||
|
|
||||||
|
|
@ -85,8 +79,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.mapColor('color_light_gray')
|
.mapColor('color_light_gray')
|
||||||
.activeOffset(1.6, 2, 1.6)
|
.activeOffset(1.6, 2, 1.6)
|
||||||
.activeVelocity(0, 0, 0)
|
.activeVelocity(0, 0, 0)
|
||||||
|
|
@ -100,8 +93,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.mapColor('color_light_gray')
|
.mapColor('color_light_gray')
|
||||||
|
|
||||||
event.create('tfg:casings/machine_casing_ultraviolet', 'gtceu:active')
|
event.create('tfg:casings/machine_casing_ultraviolet', 'gtceu:active')
|
||||||
|
|
@ -109,8 +101,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.soundType('glass')
|
.soundType('glass')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.mapColor('color_light_gray')
|
.mapColor('color_light_gray')
|
||||||
|
|
||||||
event.create('tfg:casings/heat_pipe_casing')
|
event.create('tfg:casings/heat_pipe_casing')
|
||||||
|
|
@ -119,16 +110,14 @@ const registerTFGBlocks = (event) => {
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.mapColor('color_black')
|
.mapColor('color_black')
|
||||||
|
|
||||||
event.create('tfg:sample_rack', 'tfg:active_cardinal')
|
event.create('tfg:sample_rack', 'tfg:active_cardinal')
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.mapColor('color_light_gray')
|
.mapColor('color_light_gray')
|
||||||
.notSolid()
|
.notSolid()
|
||||||
.renderType('cutout')
|
.renderType('cutout')
|
||||||
|
|
@ -138,8 +127,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.mapColor('color_light_gray')
|
.mapColor('color_light_gray')
|
||||||
.notSolid()
|
.notSolid()
|
||||||
.renderType('cutout')
|
.renderType('cutout')
|
||||||
|
|
@ -149,8 +137,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.mapColor('color_brown')
|
.mapColor('color_brown')
|
||||||
|
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
@ -160,7 +147,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.model('tfg:block/concrete/titanium_concrete')
|
.model('tfg:block/concrete/titanium_concrete')
|
||||||
.soundType('stone')
|
.soundType('stone')
|
||||||
.mapColor('stone')
|
.mapColor('stone')
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBoth('tfg:titanium_concrete')
|
.tagBoth('tfg:titanium_concrete')
|
||||||
|
|
||||||
event.create('tfg:polished_titanium_concrete')
|
event.create('tfg:polished_titanium_concrete')
|
||||||
|
|
@ -168,7 +155,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.model('tfg:block/concrete/polished_titanium_concrete')
|
.model('tfg:block/concrete/polished_titanium_concrete')
|
||||||
.soundType('stone')
|
.soundType('stone')
|
||||||
.mapColor('stone')
|
.mapColor('stone')
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBoth('tfg:titanium_concrete')
|
.tagBoth('tfg:titanium_concrete')
|
||||||
|
|
||||||
event.create('tfg:titanium_concrete_tile')
|
event.create('tfg:titanium_concrete_tile')
|
||||||
|
|
@ -176,7 +163,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.model('tfg:block/concrete/titanium_concrete_tile')
|
.model('tfg:block/concrete/titanium_concrete_tile')
|
||||||
.soundType('stone')
|
.soundType('stone')
|
||||||
.mapColor('stone')
|
.mapColor('stone')
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBoth('tfg:titanium_concrete')
|
.tagBoth('tfg:titanium_concrete')
|
||||||
|
|
||||||
event.create('tfg:titanium_concrete_tile_small')
|
event.create('tfg:titanium_concrete_tile_small')
|
||||||
|
|
@ -184,7 +171,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.model('tfg:block/concrete/titanium_concrete_tile_small')
|
.model('tfg:block/concrete/titanium_concrete_tile_small')
|
||||||
.soundType('stone')
|
.soundType('stone')
|
||||||
.mapColor('stone')
|
.mapColor('stone')
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBoth('tfg:titanium_concrete')
|
.tagBoth('tfg:titanium_concrete')
|
||||||
|
|
||||||
event.create('tfg:titanium_concrete_bricks')
|
event.create('tfg:titanium_concrete_bricks')
|
||||||
|
|
@ -192,7 +179,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.model('tfg:block/concrete/titanium_concrete_bricks')
|
.model('tfg:block/concrete/titanium_concrete_bricks')
|
||||||
.soundType('stone')
|
.soundType('stone')
|
||||||
.mapColor('stone')
|
.mapColor('stone')
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBoth('tfg:titanium_concrete')
|
.tagBoth('tfg:titanium_concrete')
|
||||||
|
|
||||||
event.create('tfg:titanium_concrete_bricks_small')
|
event.create('tfg:titanium_concrete_bricks_small')
|
||||||
|
|
@ -200,7 +187,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.model('tfg:block/concrete/titanium_concrete_bricks_small')
|
.model('tfg:block/concrete/titanium_concrete_bricks_small')
|
||||||
.soundType('stone')
|
.soundType('stone')
|
||||||
.mapColor('stone')
|
.mapColor('stone')
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBoth('tfg:titanium_concrete')
|
.tagBoth('tfg:titanium_concrete')
|
||||||
|
|
||||||
event.create('tfg:titanium_concrete_bricks_square')
|
event.create('tfg:titanium_concrete_bricks_square')
|
||||||
|
|
@ -208,7 +195,7 @@ const registerTFGBlocks = (event) => {
|
||||||
.model('tfg:block/concrete/titanium_concrete_bricks_square')
|
.model('tfg:block/concrete/titanium_concrete_bricks_square')
|
||||||
.soundType('stone')
|
.soundType('stone')
|
||||||
.mapColor('stone')
|
.mapColor('stone')
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBoth('tfg:titanium_concrete')
|
.tagBoth('tfg:titanium_concrete')
|
||||||
|
|
||||||
// #region insulation
|
// #region insulation
|
||||||
|
|
@ -216,42 +203,39 @@ const registerTFGBlocks = (event) => {
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(4)
|
.hardness(4)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
event.create('tfg:aes_insulation_frame')
|
event.create('tfg:aes_insulation_frame')
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
|
|
||||||
event.create('tfg:moderate_core_frame')
|
event.create('tfg:moderate_core_frame')
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(4)
|
.hardness(4)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
event.create('tfg:impure_moderate_core_frame')
|
event.create('tfg:impure_moderate_core_frame')
|
||||||
.soundType('copper')
|
.soundType('copper')
|
||||||
.hardness(5)
|
.hardness(5)
|
||||||
.resistance(6)
|
.resistance(6)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
|
|
||||||
// Unfinished Insulation
|
// Unfinished Insulation
|
||||||
event.create('tfg:moderate_core')
|
event.create('tfg:moderate_core')
|
||||||
.soundType('ancient_debris')
|
.soundType('ancient_debris')
|
||||||
.hardness(7)
|
.hardness(7)
|
||||||
.resistance(8)
|
.resistance(8)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.model('tfg:block/fission/moderate_core')
|
.model('tfg:block/fission/moderate_core')
|
||||||
|
|
||||||
event.create('tfg:impure_moderate_core')
|
event.create('tfg:impure_moderate_core')
|
||||||
.soundType('ancient_debris')
|
.soundType('ancient_debris')
|
||||||
.hardness(7)
|
.hardness(7)
|
||||||
.resistance(8)
|
.resistance(8)
|
||||||
.tagBlock('minecraft:mineable/pickaxe')
|
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
|
||||||
.tagBlock('minecraft:mineable/wrench')
|
|
||||||
.model('tfg:block/fission/impure_moderate_core')
|
.model('tfg:block/fission/impure_moderate_core')
|
||||||
|
|
||||||
// #region Decorative vases
|
// #region Decorative vases
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue