v1.1.0: initial commit for Minecraft 1.21.6 - 1.21.8

This commit is contained in:
2025-09-06 05:21:52 +02:00
parent 9b4768624e
commit 0b73aef720
8 changed files with 73 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
bin/*

30
README.md Normal file
View 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 |

View File

@@ -0,0 +1,9 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": ["minecraft:clay"],
"result": {
"id": "minecraft:clay_ball",
"count": 4
}
}

View File

@@ -0,0 +1,9 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": ["minecraft:honeycomb_block"],
"result": {
"id": "minecraft:honeycomb",
"count": 4
}
}

View File

@@ -0,0 +1,9 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": ["minecraft:quartz_block"],
"result": {
"id": "minecraft:quartz",
"count": 4
}
}

View 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
View File

@@ -0,0 +1,6 @@
{
"pack": {
"description": "Quality of life crafting recipes",
"pack_format": 81
}
}

BIN
pack.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB