added chainmail and letter

This commit is contained in:
Jonas_Jones 2023-04-05 03:55:48 +02:00
parent d3bb7689b5
commit 516bf1607c
11 changed files with 121 additions and 0 deletions

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "nec:item/chainmail"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "nec:item/letter"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 B

View file

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "nec:letter"
},
{
"item": "minecraft:chain"
}
],
"result": {
"item": "nec:chainmail",
"count": 1
}
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" ",
"A A",
"A A"
],
"key": {
"A": {
"item": "nec:chainmail"
}
},
"result": {
"item": "minecraft:chainmail_boots"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"A A",
"AAA",
"AAA"
],
"key": {
"A": {
"item": "nec:chainmail"
}
},
"result": {
"item": "minecraft:chainmail_chestplate"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"AAA",
"A A",
" "
],
"key": {
"A": {
"item": "nec:chainmail"
}
},
"result": {
"item": "minecraft:chainmail_helmet"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"AAA",
"A A",
"A A"
],
"key": {
"A": {
"item": "nec:chainmail"
}
},
"result": {
"item": "minecraft:chainmail_leggings"
}
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"ABA",
"AAA",
"AAA"
],
"key": {
"A": {
"item": "minecraft:paper"
},
"B": {
"item": "minecraft:honeycomb"
}
},
"result": {
"item": "nec:letter",
"count": 8
}
}