From 4ad56c590693adaa80090bf62ccd679749210272 Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Wed, 15 Jan 2025 10:38:10 -0800 Subject: [PATCH 01/14] Create Assembly_Machine Added methods and examples for the Assembly Table --- .../content/Mods/GalaxySpace/Assembly_Machine | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 docs/1.12/content/Mods/GalaxySpace/Assembly_Machine diff --git a/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine b/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine new file mode 100644 index 000000000000..f3975fee2c28 --- /dev/null +++ b/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine @@ -0,0 +1,18 @@ +# Assembly Machine + +## Package +'mods.galaxyspace' + +## Addition +'''zenscript +//mods.galaxyspace.addAssemblyRecipe(IItemStack Output, IItemStack Input...); +mods.galaxyspace.addAssemblyRecipe(, , , ,, , , , , ); +''' + +## Removal + +'''zenscript +//mods.galaxyspace.removeAssemblyRecipe(IItemStack Output); + +mods.galaxyspace.removeAssemblyRecipe(); +''' From caa31ebcbed8d8c5aa495e34e0318529bbeb017b Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Wed, 15 Jan 2025 23:48:23 -0800 Subject: [PATCH 02/14] Update Assembly_Machine Fixed broken formating. --- docs/1.12/content/Mods/GalaxySpace/Assembly_Machine | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine b/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine index f3975fee2c28..29f63d2adda0 100644 --- a/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine +++ b/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine @@ -1,18 +1,19 @@ # Assembly Machine ## Package -'mods.galaxyspace' +`mods.galaxyspace` ## Addition -'''zenscript + +```zenscript //mods.galaxyspace.addAssemblyRecipe(IItemStack Output, IItemStack Input...); mods.galaxyspace.addAssemblyRecipe(, , , ,, , , , , ); -''' +``` ## Removal -'''zenscript +```zenscript //mods.galaxyspace.removeAssemblyRecipe(IItemStack Output); mods.galaxyspace.removeAssemblyRecipe(); -''' +``` From a69ca1e529e70cbe8ed98c849fe50f8e349fa337 Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Thu, 16 Jan 2025 00:00:54 -0800 Subject: [PATCH 03/14] Create Fuel_Generator Added Fuel Generator methods. --- .../content/Mods/GalaxySpace/Fuel_Generator | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/1.12/content/Mods/GalaxySpace/Fuel_Generator diff --git a/docs/1.12/content/Mods/GalaxySpace/Fuel_Generator b/docs/1.12/content/Mods/GalaxySpace/Fuel_Generator new file mode 100644 index 000000000000..fe032f7a033a --- /dev/null +++ b/docs/1.12/content/Mods/GalaxySpace/Fuel_Generator @@ -0,0 +1,20 @@ +# Fuel Generator + +## Package +`mods.galaxyspace` + +## Addition + +```zenscript +//mods.galaxyspace.addFuelGeneratorRecipe(ILiquidStack input, int burn_time, float energy); + +mods.galaxyspace.addFuelGeneratorRecipe(, 100, 10000); +``` + +## Removal + +```zenscript +//mods.galaxyspace.removeFuelGeneratorRecipe(ILiquidStack input); + +mods.galaxyspace.removeFuelGeneratorRecipe(); +``` From 1e725872c4c25308a993b93453665468fed8db25 Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Thu, 16 Jan 2025 00:16:39 -0800 Subject: [PATCH 04/14] Create Gas_Generator Added Gas Generator methods. --- .../content/Mods/GalaxySpace/Gas_Generator | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/1.12/content/Mods/GalaxySpace/Gas_Generator diff --git a/docs/1.12/content/Mods/GalaxySpace/Gas_Generator b/docs/1.12/content/Mods/GalaxySpace/Gas_Generator new file mode 100644 index 000000000000..8b532f75fdd8 --- /dev/null +++ b/docs/1.12/content/Mods/GalaxySpace/Gas_Generator @@ -0,0 +1,20 @@ +# Gas Generator + +## Package +`mods.galaxyspace` + +## Addition + +```zenscript +//mods.galaxyspace.addGasGeneratorRecipe(ILiquidStack input, int burn_time, float energy, int drain_amount); + +mods.galaxyspace.addGasGeneratorRecipe(, 10, 20, 1); +``` + +## Removal + +```zenscript +//mods.galaxyspace.removeGasGeneratorRecipe(ILiquidStack input); + +mods.galaxyspace.removeGasGeneratorRecipe(); +``` From f71fb22dee2e24103e35d3fef7a06176a8947522 Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Thu, 16 Jan 2025 00:59:59 -0800 Subject: [PATCH 05/14] Create Hydroponic_Farm Added Hydroponic Farm methods. --- .../content/Mods/GalaxySpace/Hydroponic_Farm | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/1.12/content/Mods/GalaxySpace/Hydroponic_Farm diff --git a/docs/1.12/content/Mods/GalaxySpace/Hydroponic_Farm b/docs/1.12/content/Mods/GalaxySpace/Hydroponic_Farm new file mode 100644 index 000000000000..efcd030c97df --- /dev/null +++ b/docs/1.12/content/Mods/GalaxySpace/Hydroponic_Farm @@ -0,0 +1,20 @@ +# Hydroponic Farm + +## Package +`mods.galaxyspace` + +## Addition + +```zenscript +//mods.galaxyspace.addHydroponicFarmRecipe(IItemStack seed input, IItemStack output, IItemStack secondary product, int secondary changes, int stages, IBlock block, boolean product random, boolean secondary product random); + +mods.galaxyspace.addHydroponicFarmRecipe(, , , 100, 100, , true, true); +``` + +## Removal + +```zenscript +//mods.galaxyspace.removeHydroponicFarmRecipe(IItemStack seed input); + +mods.galaxyspace.removeHydroponicFarmRecipe(); +``` From 180a42513e82bd39cfb99773b6e45a4f4eefcbe7 Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Thu, 16 Jan 2025 01:02:54 -0800 Subject: [PATCH 06/14] Create Liquid_Collector Added Liquid Collector method. --- docs/1.12/content/Mods/GalaxySpace/Liquid_Collector | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/1.12/content/Mods/GalaxySpace/Liquid_Collector diff --git a/docs/1.12/content/Mods/GalaxySpace/Liquid_Collector b/docs/1.12/content/Mods/GalaxySpace/Liquid_Collector new file mode 100644 index 000000000000..5a6dc226eea8 --- /dev/null +++ b/docs/1.12/content/Mods/GalaxySpace/Liquid_Collector @@ -0,0 +1,12 @@ +# Liquid Collector + +## Package +`mods.galaxyspace` + +## Addition + +```zenscript +//mods.galaxyspace.addLiquidExtractorRecipe(IBlock, ILiquidStack output); + +mods.galaxyspace.addLiquidExtractorRecipe(, ); +``` From b82ae30c49381885981a4b1434595bff98dc7759 Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Thu, 16 Jan 2025 01:17:16 -0800 Subject: [PATCH 07/14] Create Universal_Recycler Added Universal Recycler methods. --- .../Mods/GalaxySpace/Universal_Recycler | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/1.12/content/Mods/GalaxySpace/Universal_Recycler diff --git a/docs/1.12/content/Mods/GalaxySpace/Universal_Recycler b/docs/1.12/content/Mods/GalaxySpace/Universal_Recycler new file mode 100644 index 000000000000..a46f5e331cb0 --- /dev/null +++ b/docs/1.12/content/Mods/GalaxySpace/Universal_Recycler @@ -0,0 +1,20 @@ +# Universal Recycler + +## Package +`mods.galaxyspace` + +## Addition + +```zenscript +//mods.galaxyspace.addRecyclerRecipe(IItemStack input, IItemStack output, optional IItemStack output, ILiquidStack output, int chances); + +mods.galaxyspace.addRecyclerRecipe(, , * 10, 100); +``` + +## Removal + +```zenscript +//mods.galaxyspace.removeRecyclerRecipe(IItemStack input); + +mods.galaxyspace.removeRecyclerRecipe(); +``` From 287a3f8adf22a6e85b33f3b2ce76f4d98c5a583f Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Thu, 16 Jan 2025 01:22:27 -0800 Subject: [PATCH 08/14] Create Rocket_Assembly_Machine Added Rocket Assembly Machine methods. --- .../Mods/GalaxySpace/Rocket_Assembly_Machine | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine diff --git a/docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine b/docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine new file mode 100644 index 000000000000..20573ba5ee55 --- /dev/null +++ b/docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine @@ -0,0 +1,20 @@ +# Rocket Assembly Machine + +## Package +`mods.galaxyspace` + +## Addition + +```zenscript +//mods.galaxyspace.addRocketAssemblyRecipe(IItemStack output, IItemStack... inputs); + +mods.galaxyspace.addRocketAssemblyRecipe(, , , ,, , , , , ); +``` + +## Removal + +```zenscript +//mods.galaxyspace.removeRocketAssemblyRecipe(IItemStack output); + +mods.galaxyspace.removeRocketAssemblyRecipe()' +``` From 0466e899596bf30548b32e78ec6c4d8f25777809 Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Thu, 16 Jan 2025 01:27:27 -0800 Subject: [PATCH 09/14] Update Assembly_Machine Forgot to press enter once. --- docs/1.12/content/Mods/GalaxySpace/Assembly_Machine | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine b/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine index 29f63d2adda0..97ed831d2ca7 100644 --- a/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine +++ b/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine @@ -7,6 +7,7 @@ ```zenscript //mods.galaxyspace.addAssemblyRecipe(IItemStack Output, IItemStack Input...); + mods.galaxyspace.addAssemblyRecipe(, , , ,, , , , , ); ``` From d0a4a604925b9e38679ce9d11985991086af1db8 Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Thu, 16 Jan 2025 01:28:34 -0800 Subject: [PATCH 10/14] Update Rocket_Assembly_Machine Replaced a ' with ; --- docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine b/docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine index 20573ba5ee55..0f37fda8c2d0 100644 --- a/docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine +++ b/docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine @@ -16,5 +16,5 @@ mods.galaxyspace.addRocketAssemblyRecipe(, )' +mods.galaxyspace.removeRocketAssemblyRecipe(); ``` From 7b020071f3da9f14b701c8503ef3b4e666acfe26 Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Thu, 16 Jan 2025 12:01:06 -0800 Subject: [PATCH 11/14] Update Assembly_Machine Fixed broken item IDs in the example. --- docs/1.12/content/Mods/GalaxySpace/Assembly_Machine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine b/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine index 97ed831d2ca7..5bf31a23c545 100644 --- a/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine +++ b/docs/1.12/content/Mods/GalaxySpace/Assembly_Machine @@ -8,7 +8,7 @@ ```zenscript //mods.galaxyspace.addAssemblyRecipe(IItemStack Output, IItemStack Input...); -mods.galaxyspace.addAssemblyRecipe(, , , ,, , , , , ); +mods.galaxyspace.addAssemblyRecipe(, , , ,, , , , , ); ``` ## Removal From 906ba106e68007fa1ba77091a6e73264c4e9d89f Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Thu, 16 Jan 2025 12:08:33 -0800 Subject: [PATCH 12/14] Update Hydroponic_Farm Reformated method. --- docs/1.12/content/Mods/GalaxySpace/Hydroponic_Farm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.12/content/Mods/GalaxySpace/Hydroponic_Farm b/docs/1.12/content/Mods/GalaxySpace/Hydroponic_Farm index efcd030c97df..363502c75b7f 100644 --- a/docs/1.12/content/Mods/GalaxySpace/Hydroponic_Farm +++ b/docs/1.12/content/Mods/GalaxySpace/Hydroponic_Farm @@ -6,7 +6,7 @@ ## Addition ```zenscript -//mods.galaxyspace.addHydroponicFarmRecipe(IItemStack seed input, IItemStack output, IItemStack secondary product, int secondary changes, int stages, IBlock block, boolean product random, boolean secondary product random); +//mods.galaxyspace.addHydroponicFarmRecipe(IItemStack seed_input, IItemStack output, IItemStack secondary_product, int secondary_changes, int stages, IBlock block, boolean product_random, boolean secondary_product_random); mods.galaxyspace.addHydroponicFarmRecipe(, , , 100, 100, , true, true); ``` From d862502d042d45ee44eceee213412751a583cc9b Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Thu, 16 Jan 2025 12:11:32 -0800 Subject: [PATCH 13/14] Update Rocket_Assembly_Machine Reformated method. --- docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine b/docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine index 0f37fda8c2d0..7b3023f1ae7c 100644 --- a/docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine +++ b/docs/1.12/content/Mods/GalaxySpace/Rocket_Assembly_Machine @@ -8,7 +8,7 @@ ```zenscript //mods.galaxyspace.addRocketAssemblyRecipe(IItemStack output, IItemStack... inputs); -mods.galaxyspace.addRocketAssemblyRecipe(, , , ,, , , , , ); +mods.galaxyspace.addRocketAssemblyRecipe(, , , , , , , , , ); ``` ## Removal From f92e1b64bfffea1d0435b007ada4315e49d5e2ad Mon Sep 17 00:00:00 2001 From: FlashyGuitar603 <61090010+BigGame2004@users.noreply.github.com> Date: Thu, 16 Jan 2025 12:14:06 -0800 Subject: [PATCH 14/14] Update Universal_Recycler Removed unused optional ItemStack output. --- docs/1.12/content/Mods/GalaxySpace/Universal_Recycler | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.12/content/Mods/GalaxySpace/Universal_Recycler b/docs/1.12/content/Mods/GalaxySpace/Universal_Recycler index a46f5e331cb0..58bdb40c325b 100644 --- a/docs/1.12/content/Mods/GalaxySpace/Universal_Recycler +++ b/docs/1.12/content/Mods/GalaxySpace/Universal_Recycler @@ -6,7 +6,7 @@ ## Addition ```zenscript -//mods.galaxyspace.addRecyclerRecipe(IItemStack input, IItemStack output, optional IItemStack output, ILiquidStack output, int chances); +//mods.galaxyspace.addRecyclerRecipe(IItemStack input, IItemStack output, ILiquidStack output, int chances); mods.galaxyspace.addRecyclerRecipe(, , * 10, 100); ```