diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..36f971e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +bin/* diff --git a/README.md b/README.md new file mode 100644 index 0000000..4928379 --- /dev/null +++ b/README.md @@ -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 | diff --git a/data/tiyns_recipes/recipe/clay_ball.json b/data/tiyns_recipes/recipe/clay_ball.json new file mode 100644 index 0000000..01e4e28 --- /dev/null +++ b/data/tiyns_recipes/recipe/clay_ball.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": ["minecraft:clay"], + "result": { + "id": "minecraft:clay_ball", + "count": 4 + } +} diff --git a/data/tiyns_recipes/recipe/honeycomb.json b/data/tiyns_recipes/recipe/honeycomb.json new file mode 100644 index 0000000..8187e88 --- /dev/null +++ b/data/tiyns_recipes/recipe/honeycomb.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": ["minecraft:honeycomb_block"], + "result": { + "id": "minecraft:honeycomb", + "count": 4 + } +} diff --git a/data/tiyns_recipes/recipe/quartz.json b/data/tiyns_recipes/recipe/quartz.json new file mode 100644 index 0000000..f089753 --- /dev/null +++ b/data/tiyns_recipes/recipe/quartz.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": ["minecraft:quartz_block"], + "result": { + "id": "minecraft:quartz", + "count": 4 + } +} diff --git a/data/tiyns_recipes/recipe/snow_ball.json b/data/tiyns_recipes/recipe/snow_ball.json new file mode 100644 index 0000000..6bc3d79 --- /dev/null +++ b/data/tiyns_recipes/recipe/snow_ball.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": ["minecraft:snow_block"], + "result": { + "id": "minecraft:snowball", + "count": 4 + } +} diff --git a/pack.mcmeta b/pack.mcmeta new file mode 100644 index 0000000..4d5af7a --- /dev/null +++ b/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "description": "Quality of life crafting recipes", + "pack_format": 81 + } +} diff --git a/pack.png b/pack.png new file mode 100644 index 0000000..c7d7f9a Binary files /dev/null and b/pack.png differ