Template:Mechanical Press/doc: Difference between revisions

From Create: Minecraft Mod Wiki
Jump to navigation Jump to search
Create: Minecraft Mod Wiki>Joker876
No edit summary
Create: Minecraft Mod Wiki>Joker876
Line 33: Line 33:
|type=packing
|type=packing
|smallgrid=1
|smallgrid=1
|A1=Brick |B1=Brick
|Input=Brick
|A2=Brick |B2=Brick
|Output=Bricks
|Output=Bricks
}}</pre>
}}</pre>
Line 41: Line 40:
|type=packing
|type=packing
|smallgrid=1
|smallgrid=1
|A1=Brick |B1=Brick
|Input=Brick
|A2=Brick |B2=Brick
|Output=Bricks
|Output=Bricks
}}
}}

Revision as of 10:07, 28 April 2021

This is a documentation subpage for Template:Mechanical Press.
It contains usage information, categories and other content that is not part of the original template page.

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

Common Parameters

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

Parameter R? Type Description Default
<A-C><1-3>
Yes
/
The input that goes into a certain slot in a 2D grid. Accepts input such as ItemName,Amount. Letters correspond to horizontal slots, numbers to vertical slots.
Note: If <smallgrid> is set to true, only letters A and B, and numbers 1 and 2 are supported.
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

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

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

"packing" type

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


{{Mechanical Press
|type=packing
|A1=Ice |B1=Ice |C1=Ice
|A2=Ice |B2=Ice |C2=Ice
|A3=Ice |B3=Ice |C3=Ice
|Output=Packed Ice
}}
produces
Mechanical Press
Packed Ice

"compacting" type

{{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

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

See also