feat(datapacks): add mc26 recipe tuning for copper chest, torches, and waystones
- Update recipe for copper chest to disable vanilla crafting - Modify torch recipe to increase yield (8 torches per craft) - Adjust warp stone recipe for Waystones mod (reduce ender pearl cost) - Add pack.mcmeta for mc26 datapack compatibility - Move recipe configurations to dedicated mc26 datapack folder - Update documentation with manual tuning instructions
This commit is contained in:
19
ReadMe.md
19
ReadMe.md
@ -159,7 +159,22 @@ OptiFine Alternatives
|
||||
# TODO
|
||||
- Перенести тюнинги рецептов в мод [CraftTweaker](https://www.curseforge.com/minecraft/mc-mods/crafttweaker) (и заодно разобраться в нём)
|
||||
|
||||
Во всяком случае это всё можно добавить вручную в saves/ВАШ_МИР или в папку world на сервере.
|
||||
|
||||
`datapacks/m2612/pack.mcmeta`
|
||||
```
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 61,
|
||||
"description": "Tuning for mc26 build"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Minecraft
|
||||
|
||||
Отключение ванильного рецепта медного сундука:
|
||||
`datapacks/m2612/data/minecraft/recipe/copper_chest.json`
|
||||
```
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
@ -170,6 +185,7 @@ OptiFine Alternatives
|
||||
}
|
||||
```
|
||||
Немного больше факелов:
|
||||
`datapacks/m2612/data/minecraft/recipe/torch.json`
|
||||
```
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
@ -188,7 +204,10 @@ OptiFine Alternatives
|
||||
}
|
||||
```
|
||||
|
||||
## Waystones
|
||||
|
||||
Измненный рецепт крафта камня перемещения (четыре ока эндера что-то уж слишком много для него):
|
||||
В папке мира: `datapacks/m2612/data/waystones/recipe/warp_stone.json`
|
||||
```
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
|
||||
7
datapacks/m2621/data/minecraft/copper_chest.json
Normal file
7
datapacks/m2621/data/minecraft/copper_chest.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
"minecraft:copper_ingot"
|
||||
],
|
||||
"result": {"id": "minecraft:copper_chest", "count": 0}
|
||||
}
|
||||
15
datapacks/m2621/data/minecraft/torch.json
Normal file
15
datapacks/m2621/data/minecraft/torch.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"#",
|
||||
"|"
|
||||
],
|
||||
"key": {
|
||||
"#": "minecraft:coal",
|
||||
"|": "minecraft:stick"
|
||||
},
|
||||
"result": {
|
||||
"id": "minecraft:torch",
|
||||
"count": 8
|
||||
}
|
||||
}
|
||||
6
datapacks/m2621/pack.mcmeta
Normal file
6
datapacks/m2621/pack.mcmeta
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 61,
|
||||
"description": "Tuning for mc26 build"
|
||||
}
|
||||
}
|
||||
@ -1,6 +0,0 @@
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 61,
|
||||
"description": "Simplify waystone stone recipe"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user