mirror of
https://github.com/tiyn/mc-tiyn-recipes.git
synced 2025-11-13 05:39:45 +01:00
v1.1.0: initial commit for Minecraft 1.21.6 - 1.21.8
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
bin/*
|
||||||
30
README.md
Normal file
30
README.md
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# Tiyns Recipes
|
||||||
|
|
||||||
|
Tiyns Recipes is a Minecraft datapack that adds some minor recipes for quality of life reasons.
|
||||||
|
Namely the following recipes are added.
|
||||||
|
|
||||||
|
- Craft 4 clay balls from a clay block
|
||||||
|
- Craft 4 honeycombs from one honeycomb block
|
||||||
|
- Craft 4 quartz from a quartz block
|
||||||
|
- Craft 4 snow balls from a snow block
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
To install the datapack it first needs to be zipped.
|
||||||
|
This can happen with the following command.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
zip -r bin/tiyns_recipes-mc1.21.6-1.21.7-1.21.8-v1.1.0.zip data pack.mcmeta pack.png
|
||||||
|
```
|
||||||
|
|
||||||
|
The file can then be found inside the `bin` directory.
|
||||||
|
Afterwards it needs to be placed in the `datapack` directory of the world.
|
||||||
|
|
||||||
|
## Versions
|
||||||
|
|
||||||
|
The following versions were available for the corresponding Minecraft versions.
|
||||||
|
The current version is noted.
|
||||||
|
|
||||||
|
| Datapack Version | Minecraft Version | Note |
|
||||||
|
| ---------------- | ----------------- | ------- |
|
||||||
|
| 1.1.0 | 1.21.6 - 1.21.8 | current |
|
||||||
9
data/tiyns_recipes/recipe/clay_ball.json
Normal file
9
data/tiyns_recipes/recipe/clay_ball.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"category": "misc",
|
||||||
|
"ingredients": ["minecraft:clay"],
|
||||||
|
"result": {
|
||||||
|
"id": "minecraft:clay_ball",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
}
|
||||||
9
data/tiyns_recipes/recipe/honeycomb.json
Normal file
9
data/tiyns_recipes/recipe/honeycomb.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"category": "misc",
|
||||||
|
"ingredients": ["minecraft:honeycomb_block"],
|
||||||
|
"result": {
|
||||||
|
"id": "minecraft:honeycomb",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
}
|
||||||
9
data/tiyns_recipes/recipe/quartz.json
Normal file
9
data/tiyns_recipes/recipe/quartz.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"category": "misc",
|
||||||
|
"ingredients": ["minecraft:quartz_block"],
|
||||||
|
"result": {
|
||||||
|
"id": "minecraft:quartz",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
}
|
||||||
9
data/tiyns_recipes/recipe/snow_ball.json
Normal file
9
data/tiyns_recipes/recipe/snow_ball.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"category": "misc",
|
||||||
|
"ingredients": ["minecraft:snow_block"],
|
||||||
|
"result": {
|
||||||
|
"id": "minecraft:snowball",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
}
|
||||||
6
pack.mcmeta
Normal file
6
pack.mcmeta
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"pack": {
|
||||||
|
"description": "Quality of life crafting recipes",
|
||||||
|
"pack_format": 81
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user