Merging in mars worldgen branch (#1370)

* red granite is now a real stone type

* starting mars rock layers

* fixed red granite

* flipped the continentalness! thanks stardust
This commit is contained in:
Pyritie 2025-07-18 02:28:21 +01:00 committed by GitHub
parent d1dd3c9e35
commit d1baf88d5b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
46 changed files with 38755 additions and 136703 deletions

View file

@ -124,6 +124,20 @@ function registerTFGSpaceBlocks(event) {
.fullBlock(true)
.opaque(true)
event.create('tfg:rock/hardened_red_granite')
.stoneSoundType()
.requiresTool(true)
.item(item => {
item.modelJson({ parent: 'gtceu:item/red_granite' })
})
.tagBlock('tfc:can_carve')
.tagBoth('forge:stone')
.tagBoth('tfc:rock/hardened')
.tagBlock('minecraft:mineable/pickaxe')
.mapColor('terracotta_red')
.fullBlock(true)
.opaque(true)
// Loose stones
event.create('tfg:loose/moon_stone', 'tfc:loose_rock')
@ -182,6 +196,14 @@ function registerTFGSpaceBlocks(event) {
.tagItem('tfc:rock_knapping')
.tagItem('tfc:metamorphic_rock')
event.create('tfg:loose/red_granite', 'tfc:loose_rock')
.stoneSoundType()
.itemTexture('tfg:item/loose/red_granite')
.tagBlock('tfc:loose_rocks')
.tagItem('tfc:any_knapping')
.tagItem('tfc:rock_knapping')
.tagItem('tfc:igneous_intrusive_rock')
// Spikes
event.create('tfg:spike/moon_stone_spike', 'tfc:rock_spike')
@ -212,6 +234,10 @@ function registerTFGSpaceBlocks(event) {
.stoneSoundType()
.noItem()
event.create('tfg:spike/red_granite_spike', 'tfc:rock_spike')
.stoneSoundType()
.noItem()
// #region Plants
/*