loose/brick rock textures, knapping textures, missing rock recipes, fixed rock sounds

This commit is contained in:
Pyritie 2025-05-06 16:01:39 +01:00
parent 673ce4fc51
commit 96d318d3b0
20 changed files with 48 additions and 14 deletions

View file

@ -92,30 +92,58 @@ function registerTFGSpaceBlocks(event) {
.opaque(true)
event.create('tfg:loose/moon_stone', 'tfc:loose_rock')
.stoneSoundType()
.itemTexture('tfg:item/loose/moon_stone')
.rockTypeModel('igneous_extrusive')
.tagBlock('tfc:loose_rocks')
.tagItem('tfc:any_knapping')
.tagItem('tfc:rock_knapping')
.tagItem('tfc:igneous_intrusive_rock')
event.create('tfg:loose/moon_deepslate', 'tfc:loose_rock')
.stoneSoundType()
.itemTexture('tfg:item/loose/moon_deepslate')
.rockTypeModel('igneous_intrusive')
.tagBlock('tfc:loose_rocks')
.tagItem('tfc:any_knapping')
.tagItem('tfc:rock_knapping')
.tagItem('tfc:igneous_intrusive_rock')
event.create('tfg:loose/mars_stone', 'tfc:loose_rock')
.stoneSoundType()
.itemTexture('tfg:item/loose/mars_stone')
.rockTypeModel('sedimentary')
.tagBlock('tfc:loose_rocks')
.tagItem('tfc:any_knapping')
.tagItem('tfc:rock_knapping')
.tagItem('tfc:sedimentary_rock')
event.create('tfg:loose/venus_stone', 'tfc:loose_rock')
.stoneSoundType()
.itemTexture('tfg:item/loose/venus_stone')
.rockTypeModel('igneous_extrusive')
.tagBlock('tfc:loose_rocks')
.tagItem('tfc:any_knapping')
.tagItem('tfc:rock_knapping')
.tagItem('tfc:igneous_extrusive_rock')
event.create('tfg:loose/mercury_stone', 'tfc:loose_rock')
.stoneSoundType()
.itemTexture('tfg:item/loose/mercury_stone')
.rockTypeModel('metamorphic')
.tagBlock('tfc:loose_rocks')
.tagItem('tfc:any_knapping')
.tagItem('tfc:rock_knapping')
.tagItem('tfc:igneous_intrusive_rock')
event.create('tfg:loose/glacio_stone', 'tfc:loose_rock')
.stoneSoundType()
.itemTexture('tfg:item/loose/glacio_stone')
.rockTypeModel('sedimentary')
.tagBlock('tfc:loose_rocks')
.tagItem('tfc:any_knapping')
.tagItem('tfc:rock_knapping')
.tagItem('tfc:igneous_extrusive_rock')
event.create('tfg:loose/permafrost', 'tfc:loose_rock')
.stoneSoundType()
.itemTexture('tfg:item/loose/permafrost')
.rockTypeModel('sedimentary')
.tagBlock('tfc:loose_rocks')
.tagItem('tfc:any_knapping')
.tagItem('tfc:rock_knapping')
.tagItem('tfc:metamorphic_rock')
}