missing stone recipes
This commit is contained in:
parent
7c86ce53c0
commit
fa1729b873
3 changed files with 37 additions and 2 deletions
|
|
@ -624,7 +624,7 @@ function registerTFCStoneRecipes(event) {
|
|||
.chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.MetalMixture, 1), 3700, 700)
|
||||
.outputFluids(Fluid.of(oxygenFluid, 16))
|
||||
|
||||
// New
|
||||
// TFC
|
||||
|
||||
event.recipes.gtceu.centrifuge('gabbro_dust_separation')
|
||||
.EUt(GTValues.VA[GTValues.MV])
|
||||
|
|
@ -755,5 +755,16 @@ function registerTFCStoneRecipes(event) {
|
|||
.chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.SiliconDioxide, 1), 4700, 700)
|
||||
.outputFluids(Fluid.of(oxygenFluid, 12))
|
||||
|
||||
// Space
|
||||
|
||||
event.recipes.gtceu.centrifuge('anorthosite_dust_separation')
|
||||
.EUt(GTValues.VA[GTValues.MV])
|
||||
.duration(480)
|
||||
.itemInputs(ChemicalHelper.get(TagPrefix.dust, TFGHelpers.getMaterial('anorthosite'), 1))
|
||||
.chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Olivine, 1), 3700, 700)
|
||||
.chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Magnetite, 1), 3700, 700)
|
||||
.chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Ilmenite, 1), 1700, 700)
|
||||
.outputFluids(Fluid.of('gtceu:helium_3', 50))
|
||||
|
||||
// #endregion
|
||||
}
|
||||
|
|
@ -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