Changes
Page history
Added 3x3 example
authored
Jun 13, 2023
by
Amy
Show whitespace changes
Inline
Side-by-side
Recipes/Shaped.md
View page @
dec7e789
...
@@ -4,7 +4,23 @@ Shaped Recipes
...
@@ -4,7 +4,23 @@ Shaped Recipes
Shaped recipes require the items to be in a certain shape in the crafting table. Note that in vanilla mode, recipes are automatically mirrored.
Shaped recipes require the items to be in a certain shape in the crafting table. Note that in vanilla mode, recipes are automatically mirrored.
## Configuration
## Configuration
-----------------
Example using a 2x2 crafting grid
```
yaml
ExampleItem
:
Id
:
GOLD_NUGGET
Model
:
1
Display
:
'
An
example
item'
Recipes
:
SHAPED
:
Type
:
SHAPED
Amount
:
1
Ingredients
:
-
stone | apple
-
apple | stone
```
```
Example using a 3x3 crafting grid.
```
yaml
ExampleItem
:
ExampleItem
:
Id
:
GOLD_NUGGET
Id
:
GOLD_NUGGET
Model
:
1
Model
:
1
...
@@ -14,6 +30,7 @@ ExampleItem:
...
@@ -14,6 +30,7 @@ ExampleItem:
Type
:
SHAPED
Type
:
SHAPED
Amount
:
1
Amount
:
1
Ingredients
:
Ingredients
:
- apple | apple
-
stone | apple | apple
- apple | apple
-
apple | stone | apple
-
apple | apple | stone
```
```
\ No newline at end of file