Skip to content

Commit 33add2e

Browse files
committed
fluid overhauls from source
fluid section is super bare, building out inputs and outputs from machine tables
1 parent 45b9667 commit 33add2e

24 files changed

Lines changed: 1041 additions & 21 deletions

docs/items/fluids/calcium_cell.mdx

Lines changed: 95 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,99 @@ title: Calcium Cell
44

55
<ItemImage file="calcium_cell" alt="Calcium Cell" size="200" />
66

7+
**Calcium Cell** is used in the <McItem slug="techreborn:chemical_reactor" /> and the <McItem slug="techreborn:industrial_electrolyzer" />.
78

8-
**Fluids** are essential part of TechReborn mod. Thay are widely used for powering generators, producing other fluids or items.
9+
### As An Input
10+
11+
<Machine config={{
12+
input: [
13+
{id: "techreborn:carbon_cell", qty: 1},
14+
{id: "techreborn:calcium_cell", qty: 1}
15+
],
16+
output: [
17+
{id: "techreborn:calcium_carbonate_cell", qty: 2}
18+
],
19+
tool: "techreborn:chemical_reactor"
20+
}} />
21+
22+
### As An Output
23+
24+
<Machine config={{
25+
input: [
26+
{id: "techreborn:uvarovite_dust", qty: 20},
27+
{id: "techreborn:empty_cell", qty: 12}
28+
],
29+
output: [
30+
{id: "techreborn:calcium_cell", qty: 3},
31+
{id: "techreborn:chrome_dust", qty: 2},
32+
{id: "techreborn:silicon_cell", qty: 3},
33+
{id: "techreborn:compressed_air_cell", qty: 6}
34+
],
35+
tool: "techreborn:industrial_electrolyzer"
36+
}} />
37+
38+
<Machine config={{
39+
input: [
40+
{id: "techreborn:lazurite_dust", qty: 29},
41+
{id: "techreborn:empty_cell", qty: 10}
42+
],
43+
output: [
44+
{id: "techreborn:aluminum_dust", qty: 3},
45+
{id: "techreborn:silicon_cell", qty: 3},
46+
{id: "techreborn:calcium_cell", qty: 3},
47+
{id: "techreborn:sodium_cell", qty: 4}
48+
],
49+
tool: "techreborn:industrial_electrolyzer"
50+
}} />
51+
52+
<Machine config={{
53+
input: [
54+
{id: "techreborn:grossular_dust", qty: 20},
55+
{id: "techreborn:empty_cell", qty: 12}
56+
],
57+
output: [
58+
{id: "techreborn:calcium_cell", qty: 3},
59+
{id: "techreborn:aluminum_dust", qty: 2},
60+
{id: "techreborn:silicon_cell", qty: 3},
61+
{id: "techreborn:compressed_air_cell", qty: 6}
62+
],
63+
tool: "techreborn:industrial_electrolyzer"
64+
}} />
65+
66+
<Machine config={{
67+
input: [
68+
{id: "minecraft:bonemeal", qty: 3},
69+
{id: "techreborn:empty_cell", qty: 1}
70+
],
71+
output: [
72+
{id: "techreborn:calcium_cell", qty: 1}
73+
],
74+
tool: "techreborn:industrial_electrolyzer"
75+
}} />
76+
77+
<Machine config={{
78+
input: [
79+
{id: "techreborn:calcite_dust", qty: 10},
80+
{id: "techreborn:empty_cell", qty: 7}
81+
],
82+
output: [
83+
{id: "techreborn:calcium_cell", qty: 2},
84+
{id: "techreborn:carbon_cell", qty: 2},
85+
{id: "techreborn:compressed_air_cell", qty: 3}
86+
],
87+
tool: "techreborn:industrial_electrolyzer"
88+
}} />
89+
90+
<Machine config={{
91+
input: [
92+
{id: "techreborn:andradite_dust", qty: 20},
93+
{id: "techreborn:empty_cell", qty: 12}
94+
],
95+
output: [
96+
{id: "techreborn:calcium_cell", qty: 3},
97+
{id: "minecraft:raw_Iron", qty: 2},
98+
{id: "techreborn:silicon_cell", qty: 3},
99+
{id: "techreborn:compressed_air_cell", qty: 6}
100+
],
101+
tool: "techreborn:industrial_electrolyzer"
102+
}} />

docs/items/fluids/calciumcarbonate_cell.mdx

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,17 @@ title: Calciumcarbonate Cell
55
<ItemImage file="calciumcarbonate_cell" alt="Calciumcarbonate Cell" size="200" />
66

77

8-
**Fluids** are essential part of TechReborn mod. Thay are widely used for powering generators, producing other fluids or items.
8+
**Calciumcarbonate Cell** is used in the <McItem slug="techreborn:chemical_reactor" />
9+
10+
### As An Output
11+
12+
<Machine config={{
13+
input: [
14+
{id: "techreborn:carbon_cell", qty: 1},
15+
{id: "techreborn:calcium_cell", qty: 1}
16+
],
17+
output: [
18+
{id: "techreborn:calcium_carbonate_cell", qty: 2}
19+
],
20+
tool: "techreborn:chemical_reactor"
21+
}} />

docs/items/fluids/carbon_cell.mdx

Lines changed: 107 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,110 @@ title: Carbon Cell
55
<ItemImage file="carbon_cell" alt="Carbon Cell" size="200" />
66

77

8-
**Fluids** are essential part of TechReborn mod. Thay are widely used for powering generators, producing other fluids or items.
8+
**Carbon Cell** is used in the <McItem slug="techreborn:chemical_reactor" /> and the <McItem slug="techreborn:industrial_electrolyzer" />.
9+
10+
### As An Input
11+
12+
<Machine config={{
13+
input: [
14+
{id: "techreborn:carbon_cell", qty: 1},
15+
{id: "techreborn:calcium_cell", qty: 1}
16+
],
17+
output: [
18+
{id: "techreborn:calcium_carbonate_cell", qty: 2}
19+
],
20+
tool: "techreborn:chemical_reactor"
21+
}} />
22+
23+
<Machine config={{
24+
input: [
25+
{id: "techreborn:carbon_cell", qty: 1},
26+
{id: "techreborn:hydrogen_cell", qty: 4}
27+
],
28+
output: [
29+
{id: "techreborn:methane_cell", qty: 5}
30+
],
31+
tool: "techreborn:chemical_reactor"
32+
}} />
33+
34+
<Machine config={{
35+
input: [
36+
{id: "techreborn:carbon_cell", qty: 1},
37+
{id: "techreborn:nitrogen_cell", qty: 1}
38+
],
39+
output: [
40+
{id: "techreborn:nitro_carbon_cell", qty: 2}
41+
],
42+
tool: "techreborn:chemical_reactor"
43+
}} />
44+
45+
<Machine config={{
46+
input: [
47+
{id: "techreborn:glyceryl_cell", qty: 1},
48+
{id: "techreborn:carbon_cell", qty: 1}
49+
],
50+
output: [
51+
{id: "techreborn:nitrocoal_fuel_cell", qty: 5}
52+
],
53+
tool: "techreborn:chemical_reactor"
54+
}} />
55+
56+
### As An Output
57+
58+
<Machine config={{
59+
input: [
60+
{id: "minecraft:sugar", qty: 32},
61+
{id: "techreborn:empty_cell", qty: 7}
62+
],
63+
output: [
64+
{id: "techreborn:carbon_cell", qty: 2},
65+
{id: "techreborn:water_cell", qty: 5}
66+
],
67+
tool: "techreborn:industrial_electrolyzer"
68+
}} />
69+
70+
<Machine config={{
71+
input: [
72+
{id: "techreborn:methane_cell", qty: 5}
73+
],
74+
output: [
75+
{id: "techreborn:hydrogen_cell", qty: 4},
76+
{id: "techreborn:carbon_cell", qty: 1}
77+
],
78+
tool: "techreborn:industrial_electrolyzer"
79+
}} />
80+
81+
<Machine config={{
82+
input: [
83+
{id: "techreborn:coal_dust", qty: 1},
84+
{id: "techreborn:empty_cell", qty: 2}
85+
],
86+
output: [
87+
{id: "techreborn:carbon_cell", qty: 2}
88+
],
89+
tool: "techreborn:industrial_electrolyzer"
90+
}} />
91+
92+
<Machine config={{
93+
input: [
94+
{id: "techreborn:charcoal_dust", qty: 1},
95+
{id: "techreborn:empty_cell", qty: 1}
96+
],
97+
output: [
98+
{id: "techreborn:carbon_cell", qty: 1}
99+
],
100+
tool: "techreborn:industrial_electrolyzer"
101+
}} />
102+
103+
<Machine config={{
104+
input: [
105+
{id: "techreborn:calcite_dust", qty: 10},
106+
{id: "techreborn:empty_cell", qty: 7}
107+
],
108+
output: [
109+
{id: "techreborn:calcium_cell", qty: 2},
110+
{id: "techreborn:carbon_cell", qty: 2},
111+
{id: "techreborn:compressed_air_cell", qty: 3}
112+
],
113+
tool: "techreborn:industrial_electrolyzer"
114+
}} />

docs/items/fluids/compressed_air_cell.mdx

Lines changed: 153 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,156 @@ title: Compressed Air Cell
55
<ItemImage file="compressed_air_cell" alt="Compressed Air Cell" size="200" />
66

77

8-
**Fluids** are essential part of TechReborn mod. Thay are widely used for powering generators, producing other fluids or items.
8+
**Compressed Air Cell** is used in the <McItem slug="techreborn:chemical_reactor" /> and the <McItem slug="techreborn:industrial_electrolyzer" />.
9+
10+
### As An Input
11+
12+
<Machine config={{
13+
input: [
14+
{id: "techreborn:compressed_air_cell", qty: 1},
15+
{id: "techreborn:nitrogen_cell", qty: 1}
16+
],
17+
output: [
18+
{id: "techreborn:nitrogen_dioxide_cell", qty: 1}
19+
],
20+
tool: "techreborn:chemical_reactor"
21+
}} />
22+
23+
<Machine config={{
24+
input: [
25+
{id: "techreborn:sodium_sulfide_cell", qty: 1},
26+
{id: "techreborn:compressed_air_cell", qty: 1}
27+
],
28+
output: [
29+
{id: "techreborn:sodium_persulfate_cell", qty: 2}
30+
],
31+
tool: "techreborn:chemical_reactor"
32+
}} />
33+
34+
<Machine config={{
35+
input: [
36+
{id: "techreborn:compressed_air_cell", qty: 1},
37+
{id: "techreborn:hydrogen_cell", qty: 1}
38+
],
39+
output: [
40+
{id: "techreborn:water_cell", qty: 1}
41+
],
42+
tool: "techreborn:chemical_reactor"
43+
}} />
44+
45+
<Machine config={{
46+
input: [
47+
{id: "techreborn:sulfuric_acid_cell", qty: 5}
48+
],
49+
output: [
50+
{id: "techreborn:hydrogen_cell", qty: 2},
51+
{id: "techreborn:sulfur_cell", qty: 1},
52+
{id: "techreborn:compressed_air_cell", qty: 2}
53+
],
54+
tool: "techreborn:industrial_electrolyzer"
55+
}} />
56+
57+
<Machine config={{
58+
input: [
59+
{id: "techreborn:sapphire_dust", qty: 8},
60+
{id: "techreborn:empty_cell", qty: 3}
61+
],
62+
output: [
63+
{id: "techreborn:aluminum_dust", qty: 2},
64+
{id: "techreborn:compressed_air_cell", qty: 3}
65+
],
66+
tool: "techreborn:industrial_electrolyzer"
67+
}} />
68+
69+
<Machine config={{
70+
input: [
71+
{id: "minecraft:sand", qty: 16},
72+
{id: "techreborn:empty_cell", qty: 2}
73+
],
74+
output: [
75+
{id: "techreborn:silicon_cell", qty: 1},
76+
{id: "techreborn:compressed_air_cell", qty: 1}
77+
],
78+
tool: "techreborn:industrial_electrolyzer"
79+
}} />
80+
81+
<Machine config={{
82+
input: [
83+
{id: "techreborn:spessartine_dust", qty: 20},
84+
{id: "techreborn:empty_cell", qty: 9}
85+
],
86+
output: [
87+
{id: "techreborn:aluminum_dust", qty: 2},
88+
{id: "techreborn:manganese_dust", qty: 3},
89+
{id: "techreborn:silicon_cell", qty: 3},
90+
{id: "techreborn:compressed_air_cell", qty: 6}
91+
],
92+
tool: "techreborn:industrial_electrolyzer"
93+
}} />
94+
95+
<Machine config={{
96+
input: [
97+
{id: "techreborn:pyrope_dust", qty: 20},
98+
{id: "techreborn:empty_cell", qty: 9}
99+
],
100+
output: [
101+
{id: "techreborn:magnesium_dust", qty: 3},
102+
{id: "techreborn:aluminum_dust", qty: 2},
103+
{id: "techreborn:silicon_cell", qty: 3},
104+
{id: "techreborn:compressed_air_cell", qty: 6}
105+
],
106+
tool: "techreborn:industrial_electrolyzer"
107+
}} />
108+
109+
<Machine config={{
110+
input: [
111+
{id: "techreborn:peridot_dust", qty: 9},
112+
{id: "techreborn:empty_cell", qty: 3}
113+
],
114+
output: [
115+
{id: "techreborn:magnesium_dust", qty: 2},
116+
{id: "minecraft:raw_Iron", qty: 2},
117+
{id: "techreborn:silicon_cell", qty: 1},
118+
{id: "techreborn:compressed_air_cell", qty: 2}
119+
],
120+
tool: "techreborn:industrial_electrolyzer"
121+
}} />
122+
123+
<Machine config={{
124+
input: [
125+
{id: "techreborn:obsidian_dust", qty: 4},
126+
{id: "techreborn:empty_cell", qty: 3}
127+
],
128+
output: [
129+
{id: "techreborn:small_pile_of_magnesium_dust", qty: 2},
130+
{id: "techreborn:iron_nugget", qty: 5},
131+
{id: "techreborn:silicon_cell", qty: 1},
132+
{id: "techreborn:compressed_air_cell", qty: 2}
133+
],
134+
tool: "techreborn:industrial_electrolyzer"
135+
}} />
136+
137+
<Machine config={{
138+
input: [
139+
{id: "techreborn:emerald_dust", qty: 29},
140+
{id: "techreborn:empty_cell", qty: 16}
141+
],
142+
output: [
143+
{id: "techreborn:aluminum_dust", qty: 2},
144+
{id: "techreborn:beryllium_cell", qty: 3},
145+
{id: "techreborn:silicon_cell", qty: 6},
146+
{id: "techreborn:compressed_air_cell", qty: 7}
147+
],
148+
tool: "techreborn:industrial_electrolyzer"
149+
}} />
150+
151+
<Machine config={{
152+
input: [
153+
{id: "techreborn:electrolyzed_water_cell", qty: 5}
154+
],
155+
output: [
156+
{id: "techreborn:hydrogen_cell", qty: 4},
157+
{id: "techreborn:compressed_air_cell", qty: 1}
158+
],
159+
tool: "techreborn:industrial_electrolyzer"
160+
}} />

0 commit comments

Comments
 (0)