-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding GalaxySpace documentation #584
base: main
Are you sure you want to change the base?
Changes from 10 commits
4ad56c5
caa31eb
a69ca1e
1e72587
f71fb22
180a425
b82ae30
287a3f8
0466e89
d0a4a60
7b02007
906ba10
d862502
f92e1b6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Assembly Machine | ||
|
||
## Package | ||
`mods.galaxyspace` | ||
|
||
## Addition | ||
|
||
```zenscript | ||
//mods.galaxyspace.addAssemblyRecipe(IItemStack Output, IItemStack Input...); | ||
|
||
mods.galaxyspace.addAssemblyRecipe(<minecraft:iron_block>, <minecraft:iron:ingot>, <minecraft:iron:ingot>, <minecraft:iron:ingot>,<minecraft:iron:ingot>, <minecraft:iron:ingot>, <minecraft:iron:ingot>, <minecraft:iron:ingot>, <minecraft:iron:ingot>, <minecraft:iron:ingot>); | ||
``` | ||
|
||
## Removal | ||
|
||
```zenscript | ||
//mods.galaxyspace.removeAssemblyRecipe(IItemStack Output); | ||
|
||
mods.galaxyspace.removeAssemblyRecipe(<galaxyspace:gs_basic:35>); | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Fuel Generator | ||
|
||
## Package | ||
`mods.galaxyspace` | ||
|
||
## Addition | ||
|
||
```zenscript | ||
//mods.galaxyspace.addFuelGeneratorRecipe(ILiquidStack input, int burn_time, float energy); | ||
|
||
mods.galaxyspace.addFuelGeneratorRecipe(<liquid:lava>, 100, 10000); | ||
``` | ||
|
||
## Removal | ||
|
||
```zenscript | ||
//mods.galaxyspace.removeFuelGeneratorRecipe(ILiquidStack input); | ||
|
||
mods.galaxyspace.removeFuelGeneratorRecipe(<liquid:fuel>); | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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(<liquid:oxygen>, 10, 20, 1); | ||
``` | ||
|
||
## Removal | ||
|
||
```zenscript | ||
//mods.galaxyspace.removeGasGeneratorRecipe(ILiquidStack input); | ||
|
||
mods.galaxyspace.removeGasGeneratorRecipe(<liquid:hydrogen>); | ||
``` |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -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); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think there should be spaces for these parameter names
Suggested change
|
||||||
|
||||||
mods.galaxyspace.addHydroponicFarmRecipe(<minecraft:brown_mushroom>, <minecraft:brown_mushroom>, <minecraft:brown_mushroom>, 100, 100, <minecraft:brown_mushroom>, true, true); | ||||||
``` | ||||||
|
||||||
## Removal | ||||||
|
||||||
```zenscript | ||||||
//mods.galaxyspace.removeHydroponicFarmRecipe(IItemStack seed input); | ||||||
|
||||||
mods.galaxyspace.removeHydroponicFarmRecipe(<minecraft:wheat_seeds>); | ||||||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Liquid Collector | ||
|
||
## Package | ||
`mods.galaxyspace` | ||
|
||
## Addition | ||
|
||
```zenscript | ||
//mods.galaxyspace.addLiquidExtractorRecipe(IBlock, ILiquidStack output); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the name of the IBlock parameter? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure actually, all I know is that it's the block that needs to be below the machine for this "recipe" to work. |
||
|
||
mods.galaxyspace.addLiquidExtractorRecipe(<minecraft:magma>, <liquid:lava>); | ||
``` |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,20 @@ | ||||||
# Rocket Assembly Machine | ||||||
|
||||||
## Package | ||||||
`mods.galaxyspace` | ||||||
|
||||||
## Addition | ||||||
|
||||||
```zenscript | ||||||
//mods.galaxyspace.addRocketAssemblyRecipe(IItemStack output, IItemStack... inputs); | ||||||
|
||||||
mods.galaxyspace.addRocketAssemblyRecipe(<minecraft:iron_block>, <minecraft:iron:ingot>, <minecraft:iron:ingot>, <minecraft:iron:ingot>,<minecraft:iron:ingot>, <minecraft:iron:ingot>, <minecraft:iron:ingot>, <minecraft:iron:ingot>, <minecraft:iron:ingot>, <minecraft:iron:ingot>); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
``` | ||||||
|
||||||
## Removal | ||||||
|
||||||
```zenscript | ||||||
//mods.galaxyspace.removeRocketAssemblyRecipe(IItemStack output); | ||||||
|
||||||
mods.galaxyspace.removeRocketAssemblyRecipe(<galacticraftplanets:rocket_t3>); | ||||||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please use different parameter names for each parameter, also There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My bad, I thought the method supported adding outputs to the secondary slot of the machine, but it did not, I must've forgotten to remove that. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. okay, the parameter names still need to be unique |
||
|
||
mods.galaxyspace.addRecyclerRecipe(<minecraft:stone:5>, <minecraft:cobblestone>, <liquid:water> * 10, 100); | ||
``` | ||
|
||
## Removal | ||
|
||
```zenscript | ||
//mods.galaxyspace.removeRecyclerRecipe(IItemStack input); | ||
|
||
mods.galaxyspace.removeRecyclerRecipe(<galaxyspace:gs_basic:3>); | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You have the wrong item name for these