summaryrefslogtreecommitdiff
path: root/config/forestry/gamemodes/HARD.cfg
blob: ad18e8e73f68de690ece596ad84652353f2ce67b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# Configuration file

~CONFIG_VERSION: 1.0.0

gamemode {

    energy {
        # Modifies the energy required to activate machines, as well as the max amount of energy stored and accepted. [range: 0.0 ~ 10.0, default: 4.0]
        S:demand.modifier=4.0

        # Enable the clockwork engine. [default: true]
        B:engine.clockwork=true
    }

    farms {
        # Modifies the time a piece of fertilizer lasts in a farm. [range: 0 ~ 4, default: 1]
        I:fertilizer.modifier=1
    }

    fuel {

        ethanol {
            # modifies the energy provided by ethanol in Buildcraft Combustion Engines. [range: 0.0 ~ 10.0, default: 0.5]
            S:combustion=0.5

            # modifies the energy provided by ethanol in a Bio Generator. [range: 0.0 ~ 10.0, default: 0.5]
            S:generator=0.5
        }

        biomass {
            # modifies the energy provided by Biomass in Biogas Engines. [range: 0.0 ~ 10.0, default: 0.5]
            S:biogas=0.5

            # modifies the energy provided by Biomass in a Bio Generator. [range: 0.0 ~ 10.0, default: 0.5]
            S:generator=0.5
        }

    }

    recipe {

        output {
            # amount yielded by the recipe for tin cans. [range: 0 ~ 64, default: 8]
            I:can=8

            # amount yielded by the recipe for wax capsules. [range: 0 ~ 64, default: 2]
            I:capsule=2

            # amount yielded by the recipe for refractory capsules. [range: 0 ~ 64, default: 2]
            I:refractory=2

            fertilizer {
                # amount of fertilizer yielded by the recipe using apatite. [range: 0 ~ 64, default: 5]
                I:apatite=5

                # amount of fertilizer yielded by the recipe using ash. [range: 0 ~ 64, default: 0]
                I:ash=0
            }

            compost {
                # amount of compost yielded by the recipe using ash. [range: 0 ~ 64, default: 1]
                I:ash=1

                # amount of compost yielded by the recipe using wheat. [range: 0 ~ 64, default: 1]
                I:wheat=1
            }

            humus {
                # amount of humus yielded by the recipe using compost. [range: 0 ~ 64, default: 8]
                I:compost=8

                # amount of humus yielded by the recipe using fertilizer. [range: 0 ~ 64, default: 8]
                I:fertilizer=8
            }

            bogearth {
                # amount of bog earth yielded by the recipe using buckets. [range: 0 ~ 64, default: 4]
                I:bucket=4

                # amount of bog earth yielded by the recipes using cans, cells or capsules. [range: 0 ~ 64, default: 5]
                I:can=5
            }

        }

    }

    fermenter {

        cycles {
            # modifies the amount of cycles compost can keep a fermenter going. [range: 0 ~ 2000, default: 150]
            I:compost=150
			
			# modifies the amount of cycles mulch can keep a fermenter going. [range: 0 ~ 2000, default: 150]
            I:mulch=150

            # modifies the amount of cycles fertilizer can keep a fermenter going. [range: 0 ~ 2000, default: 100]
            I:fertilizer=100
        }

        value {
            # modifies the amount of biomass per cycle a fermenter will produce using compost. [range: 0 ~ 2000, default: 48]
            I:compost=48
			
			# modifies the amount of biomass per cycle a fermenter will produce using mulch. [range: 0 ~ 2000, default: 48]
            I:mulch=48

            # modifies the amount of biomass per cycle a fermenter will produce using fertilizer. [range: 0 ~ 2000, default: 56]
            I:fertilizer=56
        }

        yield {
            # modifies the amount of biomass a piece of cactus will yield in a fermenter. [range: 0 ~ 2000, default: 10]
            I:cactus=10

            # modifies the amount of biomass a piece of sugar cane will yield in a fermenter. [range: 0 ~ 2000, default: 10]
            I:cane=10

            # modifies the amount of biomass a mushroom will yield in a fermenter. [range: 0 ~ 2000, default: 10]
            I:mushroom=10

            # modifies the base amount of biomass a sapling will yield in a fermenter, affected by sappiness trait. [range: 0 ~ 2000, default: 50]
            I:sapling=50

            # modifies the amount of biomass a piece of wheat will yield in a fermenter. [range: 0 ~ 2000, default: 10]
            I:wheat=10
        }

    }

    squeezer {

        liquid {
            # modifies the amount of juice squeezed from a single apple. other sources are based off this. [range: 0 ~ 2000, default: 60]
            I:apple=60

            # modifies the amount of seed oil squeezed from a single seed. other sources are based off this. [range: 0 ~ 2000, default: 3]
            I:seed=3
        }

        mulch {
            # modifies the chance of mulch per squeezed apple. [range: 0 ~ 2000, default: 8]
            I:apple=8
        }

    }

}