added gunging's wildcards authored by queenofants's avatar queenofants
...@@ -64,6 +64,21 @@ ThiccItem: ...@@ -64,6 +64,21 @@ ThiccItem:
- lightning @self - lightning @self
``` ```
# Wildcards
### Works only for `Shaped` and `Shapeless`
Wildcards can be used in recipes for both vanilla and Mythic items when specified. The list of ingredients must be within ' ', with "m" predicating mythic items and "v" predicating vanilla wildcards. For example, 'm *dagger' will accept any mythic item with "dagger" at the end of their internal name. 'v *PLANKS' will accept any vanilla item with planks at the end of their name ID.
```yaml
TEST_WAND:
Recipes:
Recipe:
Type: SHAPED
Ingredients:
- 'AIR |m *jewel| AIR'
- 'AIR |v *PLANKS| AIR'
- 'AIR |v *PLANKS| AIR'
```
# Example Crafting Configuration # Example Crafting Configuration
Here is an example of an item with multiple recipes attached to it. Here is an example of an item with multiple recipes attached to it.
... ...
......