Template:Mechanical Press

From Create: Minecraft Mod Wiki
Jump to navigation Jump to search
[view | edit | history | purge]Documentation

Lua error in package.lua at line 80: module 'Dev:Arguments' not found. This template is used to create an interface to display Mechanical Press recipes.

See Template:Inventory slot for basic usage, this documentation page will cover additional or different functions.

Definition[edit source]

Common Parameters[edit source]

Parameter R? Type Description Default
type
Yes
/
The type of the process performed by the press. Available types: "packing", "compacting", and "pressing".

Other parameters that have to be specified depend on the <type> parameter.

Parameters for "packing" type[edit source]

Parameter R? Type Description Default
Input
Yes
/
The input item that fills the input slots. Accepts input such as ItemName,Amount.
smallgrid
No
/
The size of the grid. If set to true, the grid will be 2x2. Otherwise, the grid will be 3x3. false
Output
Yes
/
The output item. Accepts input such as ItemName,Amount.

Parameters for "compacting" type[edit source]

Parameter R? Type Description Default
InputN
Yes
(at least 1)
/
The Nth input item. Accepts input such as ItemName,Amount. There can be unlimited input items.
Output
Yes
/
The output item. Accepts input such as ItemName,Amount.

Parameters for "pressing" type[edit source]

Parameter R? Type Description Default
Input
Yes
/
The input item. Accepts input such as ItemName,Amount.
Output
Yes
/
The output item. Accepts input such as ItemName,Amount.

Usage[edit source]

"packing" type[edit source]

{{Mechanical Press
|type=packing
|smallgrid=1
|Input=Brick
|Output=Bricks
}}
produces
BrickBrick
BrickBrick
Mechanical Press
Bricks


{{Mechanical Press
|type=packing
|Input=Ice
|Output=Packed Ice
}}
produces
IceIceIce
IceIceIce
IceIceIce
Mechanical Press
Packed Ice

"compacting" type[edit source]

{{Mechanical Press
|type=compacting
|Input1=Egg
|Input2=Sugar
|Input3=Cinder Flour
|Output=Blaze Cake Base
}}
produces
EggSugarCinder Flour
Mechanical Press
Blaze Cake Base

"pressing" type[edit source]

{{Mechanical Press
|type=pressing
|Input=Sugar Cane
|Output=Paper
}}
produces
Sugar Cane
Mechanical Press
Paper

See also[edit source]

[view | edit | history | purge]The above documentation is transcluded from Template:Mechanical Press/doc.