aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/plugin/agrichem/fluids/FluidLoader.java
blob: 24a0d5fb8fd7424c52eaf33a5ef0a68a774e9c63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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});
    }
}