Merge pull request #18 from J-onasJones/fletching-stairs

Fletching stairs
This commit is contained in:
Jonas_Jones 2023-05-15 18:35:24 +02:00 committed by GitHub
commit c18a58c51b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 296 additions and 2 deletions

View file

@ -0,0 +1,31 @@
{
"display": {
"icon": {
"item": "nec:fletching_stairs"
},
"title": {
"translate": "advancements.nec.fletching_stairs.title"
},
"description": {
"translate": "advancements.nec.fletching_stairs.description"
},
"frame": "task",
"show_toast": true,
"annouce_to_chat": true
},
"parent": "nec:nec",
"criteria": {
"requirement": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": [
"nec:fletching_stairs"
]
}
]
}
}
}
}

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"A ",
"AA ",
"AAA"
],
"key": {
"A": {
"item": "minecraft:fletching_table"
}
},
"result": {
"item": "nec:fletching_stairs",
"count": 4
}
}