remove version/mc version from sub src
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"display": {
|
||||
"icon": {
|
||||
"id": "minecraft:saddle"
|
||||
},
|
||||
"title": "Craftable Saddles",
|
||||
"description": "Craft saddles using leather, string, and iron.",
|
||||
"show_toast": false,
|
||||
"announce_to_chat": false
|
||||
},
|
||||
"criteria": {
|
||||
"tick": {
|
||||
"trigger": "minecraft:tick"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"tick"
|
||||
]
|
||||
],
|
||||
"parent": "minecraft:root"
|
||||
}
|
||||
47
src/craftable_saddles/data/minecraft/advancement/saddle.json
Normal file
47
src/craftable_saddles/data/minecraft/advancement/saddle.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_leather": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": "minecraft:leather"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_string": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": "minecraft:string"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_iron_ingot": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": "minecraft:iron_ingot"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_leather",
|
||||
"has_string",
|
||||
"has_iron_ingot"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"minecraft:saddle"
|
||||
]
|
||||
}
|
||||
}
|
||||
23
src/craftable_saddles/data/minecraft/recipe/saddle.json
Normal file
23
src/craftable_saddles/data/minecraft/recipe/saddle.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "equipment",
|
||||
"pattern": [
|
||||
"LLL",
|
||||
"LSL",
|
||||
"I I"
|
||||
],
|
||||
"key": {
|
||||
"L": {
|
||||
"item": "minecraft:leather"
|
||||
},
|
||||
"S": {
|
||||
"item": "minecraft:string"
|
||||
},
|
||||
"I": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"id": "minecraft:saddle"
|
||||
}
|
||||
}
|
||||
7
src/craftable_saddles/pack.mcmeta
Normal file
7
src/craftable_saddles/pack.mcmeta
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 48,
|
||||
"supported_formats": {"min_inclusive": 48, "max_inclusive": 48},
|
||||
"description": [{"text":"Craftable Saddles","color":"gold"}]
|
||||
}
|
||||
}
|
||||
BIN
src/craftable_saddles/pack.png
Normal file
BIN
src/craftable_saddles/pack.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 237 B |
Reference in New Issue
Block a user