Feature/venus stone ores (#2961)

* langs

* fix veins

* missing knapping textures

* rename ignimbrite features

* new ores

* feature stuff

* entity tweaks
This commit is contained in:
Pyritie 2026-02-02 23:42:42 +00:00 committed by GitHub
parent 27fbc7e2d5
commit 260851074c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
51 changed files with 850 additions and 131 deletions

View file

@ -427,7 +427,9 @@ global.ORE_BEARING_STONES = /** @type {const} */ ([
"venus_stone",
"mercury_stone",
"glacio_stone",
"red_granite"
"red_granite",
"flavolite",
"sandy_jadestone"
]);
//#endregion

View file

@ -1051,7 +1051,7 @@ global.BIG_ROCK_TABLE = /** @type {{String, RockType}} */ ({
"ochrum": {
material: 'ochrum',
collapsible: false,
dimensions: ['ad_astra:mars'],
dimensions: ['ad_astra:mars', 'ad_astra:venus'],
pillar: 'create:ochrum_pillar',
pillar2: 'create:layered_ochrum',
stonecutterTag: 'create:stone_types/ochrum',
@ -1066,7 +1066,7 @@ global.BIG_ROCK_TABLE = /** @type {{String, RockType}} */ ({
"crimsite": {
material: 'crimsite',
collapsible: false,
dimensions: ['ad_astra:venus'],
dimensions: ['ad_astra:venus', 'ad_astra:mercury'],
pillar: 'create:crimsite_pillar',
pillar2: 'create:layered_crimsite',
stonecutterTag: 'create:stone_types/crimsite',

View file

@ -128,4 +128,22 @@ const registerTFGRocksTagPrefixes = (event) => {
.generationCondition(shouldGenerateOre)
TFGHelpers.registerCobbleBlock('red_granite', 'gtceu:red_granite_cobblestone');
event.create('flavolite', 'ore')
.stateSupplier(() => Block.getBlock('tfg:rock/hardened_flavolite').defaultBlockState())
.baseModelLocation('betterend:block/flavolite')
.unificationEnabled(true)
.materialIconType(GTMaterialIconType.ore)
.generationCondition(shouldGenerateOre)
TFGHelpers.registerCobbleBlock('flavolite', 'tfg:rock/cobble_flavolite');
event.create('sandy_jadestone', 'ore')
.stateSupplier(() => Block.getBlock('tfg:rock/hardened_sandy_jadestone').defaultBlockState())
.baseModelLocation('betterend:block/sandy_jadestone')
.unificationEnabled(true)
.materialIconType(GTMaterialIconType.ore)
.generationCondition(shouldGenerateOre)
TFGHelpers.registerCobbleBlock('sandy_jadestone', 'tfg:rock/cobble_sandy_jadestone');
}