Skip to content

Commit 13884b2

Browse files
Phoenixvine32908Ghostipediajurrejelle
authored
Updated multiblock example appearance blocks and removal of recipe type example for non existent create integration. (#4148)
Co-authored-by: Ghostipedia / Caitlynn <[email protected]> Co-authored-by: Jurre Groenendijk <[email protected]>
1 parent 94bf289 commit 13884b2

File tree

3 files changed

+5
-17
lines changed

3 files changed

+5
-17
lines changed

docs/content/Modpacks/Examples/Multiblocks/Example_Steam_Multiblock.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Steam multiblocks such as the Steam Grinder and Steam Oven use this class.
2222
.rotationState(RotationState.NON_Y_AXIS)
2323
.recipeType('compressor')
2424
.recipeModifier((machine, recipe) => $SteamMulti.recipeModifier(machine, recipe), true)
25+
.appearanceBlock(GTBlocks.BRONZE_HULL)
2526
.pattern(definition => FactoryBlockPattern.start()
2627
.aisle("BCCCB", "BBCBB", "BBCBB", "BBBBB", "BBBBB")
2728
.aisle("CDDDC", "BDBDB", "BDEDB", "BBDBB", "BBBBB")
@@ -51,6 +52,7 @@ Steam multiblocks such as the Steam Grinder and Steam Oven use this class.
5152
.rotationState(RotationState.NON_Y_AXIS)
5253
.recipeType(COMPRESSOR_RECIPES)
5354
.recipeModifier((machine, recipe) -> SteamParallelMultiblockMachine.recipeModifier(machine, recipe), true)
55+
.appearanceBlock(GTBlocks.BRONZE_HULL)
5456
.pattern(definition -> FactoryBlockPattern.start()
5557
.aisle("BCCCB", "BBCBB", "BBCBB", "BBBBB", "BBBBB")
5658
.aisle("CDDDC", "BDBDB", "BDEDB", "BBDBB", "BBBBB")

docs/content/Modpacks/Examples/Multiblocks/Example_Turbine.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Below is an example of a multiblock using the LargeTurbineMachine class for maki
1919
.rotationState(RotationState.NON_Y_AXIS)
2020
.recipeTypes("gas_turbine")
2121
.recipeModifiers([GTRecipeModifiers.OC_NON_PERFECT_SUBTICK, GTRecipeModifiers.BATCH_MODE, (machine, recipe) => GTRecipeModifiers.LargeTurbineMachine(machine, recipe)])
22-
.appearanceBlock(GTBlocks.CASING_TITANIUM_STABLE)
22+
.appearanceBlock(GTBlocks.CASING_STAINLESS_TURBINE)
2323
.pattern(definition => FactoryBlockPattern.start()
2424
.aisle("BBBBBBB", "BBBCBBB", "BBBDBBB", "BBBCBBB", "BBBBBBB")
2525
.aisle("BBBCBBB", "BBCACBB", "BBCFCBB", "BBCACBB", "BBBCBBB")
@@ -50,6 +50,7 @@ Below is an example of a multiblock using the LargeTurbineMachine class for maki
5050
.rotationState(RotationState.NON_Y_AXIS)
5151
.recipeType(GTRecipeTypes.GAS_TURBINE_FUELS)
5252
.recipeModifiers(GTRecipeModifiers.OC_NON_PERFECT_SUBTICK, GTRecipeModifiers.BATCH_MODE, LargeTurbineMachine::recipeModifier)
53+
.appearanceBlock(GTBlocks.CASING_STAINLESS_TURBINE)
5354
.pattern(definition -> FactoryBlockPattern.start()
5455
.aisle("BBBBBBB", "BBBCBBB", "BBBDBBB", "BBBCBBB", "BBBBBBB")
5556
.aisle("BBBCBBB", "BBCACBB", "BBCECBB", "BBCACBB", "BBBCBBB")

docs/content/Modpacks/Other-Topics/Custom-Recipe-Types.md

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,4 @@ GTCEuStartupEvents.registry('gtceu:recipe_type', event => {
2121

2222
1. Max Item Inputs, Max Item Outputs, Max Fluid Inputs, Max Fluid Outputs
2323
2. A list of available ```GuiTextures``` and ```FillDirection```s can be found in the GTCEu Modern Github, or in the .jar file.
24-
25-
26-
```js title="test_kinetic_recipe_type.js"
27-
GTCEuStartupEvents.registry('gtceu:recipe_type', event => {
28-
event.create('test_recipe_type')
29-
.category('test_kinetic')
30-
.setEUIO('in')
31-
.setMaxIOSize(3, 3, 3, 3)
32-
.setSlotOverlay(false, false, GuiTextures.SOLIDIFIER_OVERLAY)
33-
.setProgressBar(GuiTextures.PROGRESS_BAR_ARROW, FillDirection.LEFT_TO_RIGHT)
34-
.setSound(GTSoundEntries.COOLING)
35-
.setMaxTooltip(6) // (1)
36-
})
37-
```
38-
39-
1. Helps to adjust the JEI/REI/EMI layout when adding addition conditions to the recipe like RPM and SU.
24+

0 commit comments

Comments
 (0)