-
Notifications
You must be signed in to change notification settings - Fork 1
/
curseforge.html
93 lines (82 loc) · 2.95 KB
/
curseforge.html
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
<p style="text-align: center;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://img.shields.io/discord/579354150639370348?color=7389D8&label=Discord&labelColor=6A7EC2&logo=discord&logoColor=FFFFFF&style=flat-square" alt="Discord Server"/></p>
<h1 style="text-align: center"><b>Simple Machinery</b></h1>
<p style="text-align: center;"><img style="display: block; margin-left: auto; margin-right: auto;" src="https://raw.githubusercontent.com/Redfire75369/Simple-Machinery/1.16.5/src/main/resources/logo.png" alt="Mod Logo" width="200" height="200"/></p>
<p>
Simple Machinery is a Minecraft mod that adds simple machines to Minecraft.
This mod is made for modpack authors. It does not add any recipes by itself, and is meant to configured to fit into a modpack's progression.
The machines that are added, usually don't exist in other mods, such as autoclaves and turntables.
</p>
<br/>
<h3>Machines</h3>
<ul>
<li>Autoclave</li>
<li>Fluid Centrifuge</li>
<li>Sieve</li>
<li>Turntable</li>
</ul>
<br/>
<h3>Inputs, Outputs and Fuels</h3>
<div class="spoiler">
<h4>Autoclave</h4>
<div class="spoiler">
<ul>
<li>Fuel: Steam</li>
<li>Input: 1 Item + 1 Fluid</li>
<li>Output: 1 Item</li>
</ul>
</div>
<br/>
<h4>Fluid Centrifuge</h4>
<div class="spoiler">
<ul>
<li>Fuel: Forge Energy</li>
<li>Input: 1 Liquid</li>
<li>Output: 3 Weighted Items + 3 Fluids</li>
</ul>
</div>
<br/>
<h4>Sieve</h4>
<div class="spoiler">
<ul>
<li>Fuel: Forge Energy</li>
<li>Input: 1 Item</li>
<li>Output: 6 Weighted Item</li>
</ul>
</div>
<br/>
<h4>Turntable</h4>
<div class="spoiler">
<ul>
<li>Fuel: Forge Energy</li>
<li>Input: 1 Item</li>
<li>Output: 1 Item</li>
</ul>
</div>
</div>
<br/>
<h3>CraftTweaker Support</h3>
<div class="spoiler">
<h4>Autoclave</h4>
<code>
mods.simplemachinery.autoclave.addRecipe(string id, IIngredient input, IFluidStack fluidInput, IItemStack output, int steam, int time);<br/>
mods.simplemachinery.autoclave.removeRecipe(IItemStack output);
</code>
<br/>
<h4>Fluid Centrifuge</h4>
<code>
mods.simplemachinery.fluid_centrifuge.addRecipe(string id, IFluidStack fluidInput, MCWeightedItemStack[] outputs, IFluidStack[] fluidOutputs, int energy, int ticks);<br/>
mods.simplemachinery.fluid_centrifuge.addRecipe(string id, IFluidStack fluidInput, IItemStack[] outputs, float[] outputChances[], IFluidStack[] outputs, int energy, int ticks);
</code>
<br/>
<h4>Sieve</h4>
<code>
mods.simplemachinery.sieve.addRecipe(string id, IItemStack input, MCWeightedItemStack[] outputs, int energy, int ticks);<br/>
mods.simplemachinery.sieve.addRecipe(string id, IItemStack input, IItemStack[] outputs, float[] outputChances, int energy, int ticks);
</code>
<br/>
<h4>Turntable</h4>
<code>
mods.simplemachinery.turntable.addRecipe(string id, IIngredient input, IItemStack output, int energy, int ticks);<br/>
mods.simplemachinery.autoclave.removeRecipe(IItemStack output);
</code>
</div>