double rockets (#2910)
* first things * yes * legally distinct rockets * Update tags.js Signed-off-by: Pyritie <pyritie@gmail.com> --------- Signed-off-by: Pyritie <pyritie@gmail.com> Co-authored-by: Pyritie <pyritie@gmail.com>
This commit is contained in:
parent
11d83ff913
commit
8b1403031e
6 changed files with 234 additions and 0 deletions
|
|
@ -51,6 +51,10 @@ const registerAdAstraItemTags = (event) => {
|
|||
event.add('c:hidden_from_recipe_viewers', 'ad_astra:aeronos_mushroom')
|
||||
event.add('c:hidden_from_recipe_viewers', 'ad_astra:strophar_mushroom')
|
||||
|
||||
event.add('c:hidden_from_recipe_viewers', 'tfg:tier_3_double_rocket')
|
||||
event.add('c:hidden_from_recipe_viewers', 'tfg:tier_4_double_rocket')
|
||||
|
||||
|
||||
// Deco blocks
|
||||
const DECO_BLOCKS = [ 'iron', 'steel', 'desh', 'calorite', 'ostrum' ];
|
||||
DECO_BLOCKS.forEach(block => {
|
||||
|
|
@ -68,6 +72,12 @@ const registerAdAstraItemTags = (event) => {
|
|||
event.add('tfg:ad_astra_etrium_blocks', 'ad_astra:etrium_plateblock')
|
||||
event.add('tfg:ad_astra_etrium_blocks', 'ad_astra:etrium_panel')
|
||||
|
||||
event.add('ad_astra:held_over_head', 'tfg:tier_1_double_rocket')
|
||||
event.add('ad_astra:held_over_head', 'tfg:tier_2_double_rocket')
|
||||
event.add('ad_astra:held_over_head', 'tfg:tier_3_double_rocket')
|
||||
event.add('ad_astra:held_over_head', 'tfg:tier_4_double_rocket')
|
||||
|
||||
|
||||
global.AD_ASTRA_WOOD.forEach(wood => {
|
||||
|
||||
if (wood.log) {
|
||||
|
|
|
|||
|
|
@ -88,6 +88,22 @@ function registerTFGRocketRecipes(event) {
|
|||
.circuit(2)
|
||||
.EUt(GTValues.VA[GTValues.HV])
|
||||
.addMaterialInfo(true, true)
|
||||
|
||||
event.recipes.gtceu.assembler('ad_astra:assembler_tier_1_double_rocket')
|
||||
.itemInputs(
|
||||
ChemicalHelper.get(TagPrefix.plateDense, TFGHelpers.getMaterial('rocket_alloy_t1'), 12),
|
||||
'4x ad_astra:rocket_fin',
|
||||
'1x ad_astra:steel_engine',
|
||||
'1x ad_astra:rocket_nose_cone',
|
||||
'24x #forge:insulation_t1',
|
||||
'6x #gtceu:circuits/hv'
|
||||
)
|
||||
.inputFluids(Fluid.of('gtceu:silicon', 144 * 24))
|
||||
.itemOutputs('tfg:tier_1_double_rocket')
|
||||
.duration(1800)
|
||||
.circuit(3)
|
||||
.EUt(GTValues.VA[GTValues.HV])
|
||||
.addMaterialInfo(true, true)
|
||||
|
||||
//#endregion
|
||||
|
||||
|
|
@ -185,6 +201,22 @@ function registerTFGRocketRecipes(event) {
|
|||
.circuit(3)
|
||||
.EUt(GTValues.VA[GTValues.EV])
|
||||
.addMaterialInfo(true, true)
|
||||
|
||||
event.recipes.gtceu.assembler('ad_astra:tier_2_double_rocket')
|
||||
.itemInputs(
|
||||
ChemicalHelper.get(TagPrefix.plateDense, TFGHelpers.getMaterial('rocket_alloy_t2'), 18),
|
||||
'4x tfg:rocket_fin_t2',
|
||||
'1x ad_astra:desh_engine',
|
||||
'1x tfg:rocket_cone_t2',
|
||||
'18x #forge:insulation_t2/roll',
|
||||
'6x #gtceu:circuits/ev'
|
||||
)
|
||||
.inputFluids(Fluid.of('gtceu:titanium', 144 * 24))
|
||||
.itemOutputs('tfg:tier_2_double_rocket')
|
||||
.duration(2166)
|
||||
.circuit(4)
|
||||
.EUt(GTValues.VA[GTValues.EV])
|
||||
.addMaterialInfo(true, true)
|
||||
|
||||
//#endregion
|
||||
|
||||
|
|
@ -278,6 +310,22 @@ function registerTFGRocketRecipes(event) {
|
|||
.EUt(GTValues.VA[GTValues.IV])
|
||||
.addMaterialInfo(true, true)
|
||||
|
||||
event.recipes.gtceu.assembler('ad_astra:tier_3_double_rocket')
|
||||
.itemInputs(
|
||||
'24x #forge:dense_plates/rocket_alloy_t3',
|
||||
'4x tfg:rocket_fin_t3',
|
||||
'1x ad_astra:ostrum_engine',
|
||||
'2x ad_astra:ostrum_tank',
|
||||
'1x tfg:rocket_cone_t3',
|
||||
'12x #forge:insulation_t3/sheet'
|
||||
)
|
||||
.inputFluids(Fluid.of('gtceu:bromine', 1000 * 24))
|
||||
.itemOutputs('tfg:tier_3_double_rocket')
|
||||
.duration(2550)
|
||||
.circuit(5)
|
||||
.EUt(GTValues.VA[GTValues.IV])
|
||||
.addMaterialInfo(true, true)
|
||||
|
||||
//#endregion
|
||||
*/
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue