missing stone recipes
This commit is contained in:
parent
7c86ce53c0
commit
fa1729b873
3 changed files with 37 additions and 2 deletions
|
|
@ -185,6 +185,9 @@ global.ORE_BEARING_STONES = [
|
|||
|
||||
'deepslate',
|
||||
'pyroxenite',
|
||||
'dripstone'
|
||||
'dripstone',
|
||||
|
||||
'anorthosite',
|
||||
'basanite'
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -60,4 +60,25 @@ const registerTFCTagPrefixes = (event) => {
|
|||
.materialIconType(GTMaterialIconType.ore)
|
||||
.generationCondition(ItemGenerationCondition.hasOreProperty)
|
||||
.materialSupplier(() => GTMaterials.Deepslate)
|
||||
|
||||
event.create('anorthosite', 'ore')
|
||||
.stateSupplier(() => Block.getBlock('tfg:raw_anorthosite').defaultBlockState())
|
||||
.baseModelLocation('ad_astra:block/moon_stone')
|
||||
.unificationEnabled(true)
|
||||
.materialIconType(GTMaterialIconType.ore)
|
||||
.generationCondition(ItemGenerationCondition.hasOreProperty)
|
||||
|
||||
event.create('basanite', 'ore')
|
||||
.stateSupplier(() => Block.getBlock('tfg:raw_basanite').defaultBlockState())
|
||||
.baseModelLocation('ad_astra:block/moon_deepslate')
|
||||
.unificationEnabled(true)
|
||||
.materialIconType(GTMaterialIconType.ore)
|
||||
.generationCondition(ItemGenerationCondition.hasOreProperty)
|
||||
|
||||
event.create('syenite', 'ore')
|
||||
.stateSupplier(() => Block.getBlock('tfg:raw_syenite').defaultBlockState())
|
||||
.baseModelLocation('ad_astra:block/mars_stone')
|
||||
.unificationEnabled(true)
|
||||
.materialIconType(GTMaterialIconType.ore)
|
||||
.generationCondition(ItemGenerationCondition.hasOreProperty)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue