Skip to content

Commit 04a73b1

Browse files
authored
Merge pull request #9 from TechReborn/mh_programatic-page-generation
Programatic Page Generation
2 parents 84c285e + 0eaabe9 commit 04a73b1

File tree

241 files changed

+34624
-1124
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

241 files changed

+34624
-1124
lines changed

docs/blocks/batteries/batteries.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Battery blocks are used to store energy and charge items. For an explanation of
1515
- <McItem slug="techreborn:aesu" overrides={{name:"AESU"}}/>
1616
- <McItem slug="techreborn:idsu" overrides={{name:"IDSU"}}/>
1717
- <McItem slug="techreborn:lesu" overrides={{name:"LESU Controller"}}/>
18-
- <McItem slug="techreborn:lesu_storage" overrides={{name:"LESU Storage", image:"lesu_block"}}/>
18+
- <McItem slug="techreborn:lesu_storage" overrides={{name:"LESU Storage", image:"techreborn:lesu_block"}}/>
1919

2020
## Usage Notes
2121

docs/blocks/machines/alloy_smelter.mdx

Lines changed: 124 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,128 @@ The **Alloy Smelter** is a machine that creates metal alloys from ingots or dust
1717

1818
<CraftingTable recipe="input air techreborn:electronic_circuit air input techreborn:electric_furnace techreborn:iron_alloy_furnace techreborn:electric_furnace input air air air output techreborn:alloy_smelter"/>
1919

20-
### List of alloys
20+
### Crafting Recipes
21+
<details>
22+
<summary>Recipes using Alloy Smelter</summary>
23+
<Machine config={{
24+
"id": "brass_ingot",
25+
"input": [
26+
{
27+
"id": "minecraft:copper_ingot",
28+
"qty": 3
29+
},
30+
{
31+
"id": "techreborn:zinc_ingot",
32+
"qty": 1
33+
}
34+
],
35+
"output": [
36+
{
37+
"id": "techreborn:brass_ingot",
38+
"qty": 4
39+
}
40+
],
41+
"tool": "techreborn:alloy_smelter",
42+
"meta": {
43+
"power": 6,
44+
"time": 200
45+
}
46+
}} />
47+
<Machine config={{
48+
"id": "bronze_ingot",
49+
"input": [
50+
{
51+
"id": "minecraft:copper_ingot",
52+
"qty": 3
53+
},
54+
{
55+
"id": "techreborn:tin_ingot",
56+
"qty": 1
57+
}
58+
],
59+
"output": [
60+
{
61+
"id": "techreborn:bronze_ingot",
62+
"qty": 4
63+
}
64+
],
65+
"tool": "techreborn:alloy_smelter",
66+
"meta": {
67+
"power": 6,
68+
"time": 200
69+
}
70+
}} />
71+
<Machine config={{
72+
"id": "electrum_ingot",
73+
"input": [
74+
{
75+
"id": "minecraft:gold_ingot",
76+
"qty": 1
77+
},
78+
{
79+
"id": "techreborn:silver_ingot",
80+
"qty": 1
81+
}
82+
],
83+
"output": [
84+
{
85+
"id": "techreborn:electrum_ingot",
86+
"qty": 2
87+
}
88+
],
89+
"tool": "techreborn:alloy_smelter",
90+
"meta": {
91+
"power": 6,
92+
"time": 200
93+
}
94+
}} />
95+
<Machine config={{
96+
"id": "invar_ingot",
97+
"input": [
98+
{
99+
"id": "minecraft:iron_ingot",
100+
"qty": 3
101+
},
102+
{
103+
"id": "techreborn:nickel_ingot",
104+
"qty": 1
105+
}
106+
],
107+
"output": [
108+
{
109+
"id": "techreborn:invar_ingot",
110+
"qty": 3
111+
}
112+
],
113+
"tool": "techreborn:alloy_smelter",
114+
"meta": {
115+
"power": 6,
116+
"time": 200
117+
}
118+
}} />
119+
<Machine config={{
120+
"id": "netherite_ingot",
121+
"input": [
122+
{
123+
"id": "minecraft:gold_ingot",
124+
"qty": 10
125+
},
126+
{
127+
"id": "minecraft:netherite_scrap",
128+
"qty": 10
129+
}
130+
],
131+
"output": [
132+
{
133+
"id": "minecraft:netherite_ingot",
134+
"qty": 3
135+
}
136+
],
137+
"tool": "techreborn:alloy_smelter",
138+
"meta": {
139+
"power": 6,
140+
"time": 600
141+
}
142+
}} />
21143

22-
<McItem slug="techreborn:alloy_smelter" inline={true}/> recipe:
23-
3x <McItem slug="minecraft:copper_ingot" inline={true}/> + <McItem slug="techreborn:zinc_ingot" inline={true}/> &rarr; 4x <McItem slug="techreborn:brass_ingot" inline={true}/>
24-
25-
<McItem slug="techreborn:alloy_smelter" inline={true}/> recipe:
26-
3x <McItem slug="minecraft:copper_ingot" inline={true}/> + <McItem slug="techreborn:tin_ingot" inline={true}/> &rarr; 4x <McItem slug="techreborn:bronze_ingot" inline={true}/>
27-
28-
<McItem slug="techreborn:alloy_smelter" inline={true}/> recipe:
29-
<McItem slug="minecraft:gold_ingot" inline={true}/> + <McItem slug="techreborn:silver_ingot" inline={true}/> &rarr; 2x <McItem slug="techreborn:electrum_ingot" inline={true}/>
30-
31-
<McItem slug="techreborn:alloy_smelter" inline={true}/> recipe:
32-
2x <McItem slug="minecraft:iron_ingot" inline={true}/> + <McItem slug="techreborn:nickel_ingot" inline={true}/> &rarr; 3x <McItem slug="techreborn:invar_ingot" inline={true}/>
144+
</details>

0 commit comments

Comments
 (0)