diff options
| author | huajijam <strhuaji@gmail.com> | 2019-03-18 20:48:01 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-18 20:48:01 +0800 |
| commit | 847934e3f0ba597f6d43d5fafdd0e6192d007585 (patch) | |
| tree | c82b2784655f51b48c430d0cdd22e70b0523aa11 /src/Java/gtPlusPlus/plugin/agrichem/fluids | |
| parent | 40d7e5da9f5b84213e2c3e4596fdc69b94bd523e (diff) | |
| parent | f93d9fb323a5aee2ed5c30320998f26bc177d707 (diff) | |
| download | GT5-Unofficial-847934e3f0ba597f6d43d5fafdd0e6192d007585.tar.gz GT5-Unofficial-847934e3f0ba597f6d43d5fafdd0e6192d007585.tar.bz2 GT5-Unofficial-847934e3f0ba597f6d43d5fafdd0e6192d007585.zip | |
just fix more bugs
just fix more bugs
Diffstat (limited to 'src/Java/gtPlusPlus/plugin/agrichem/fluids')
| -rw-r--r-- | src/Java/gtPlusPlus/plugin/agrichem/fluids/FluidLoader.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/plugin/agrichem/fluids/FluidLoader.java b/src/Java/gtPlusPlus/plugin/agrichem/fluids/FluidLoader.java new file mode 100644 index 0000000000..a60a8c09de --- /dev/null +++ b/src/Java/gtPlusPlus/plugin/agrichem/fluids/FluidLoader.java @@ -0,0 +1,21 @@ +package gtPlusPlus.plugin.agrichem.fluids; + +import gtPlusPlus.core.fluids.FluidFactory; + +public class FluidLoader { + + private static final int ID_DIRTY_WATER = 50; + private static final int ID_RAW_SEWERAGE = 51; + private static final int ID_GUANO = 52; + private static final int ID_POOPJUICE = 53; + + public static void generate() { + + FluidFactory.generate(ID_DIRTY_WATER, "dirtywater", new short[] {25, 25, 180}); + FluidFactory.generate(ID_RAW_SEWERAGE, "sewerage", new short[] {100, 45, 25}); + FluidFactory.generate(ID_GUANO, "guano", new short[] {175, 175, 180}); + FluidFactory.generate(ID_POOPJUICE, "poo", new short[] {75, 45, 10}); + + } + +} |
