This commit is contained in:
Joshua7Perkins
2020-10-07 02:02:38 -05:00
parent dc3aef2218
commit c7da687185
34 changed files with 656 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
{
"variants": {
"": { "model": "examplemod:block/block_of_charcoal" }
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/cube_all",
"textures": {
"all": "examplemod:block/block_of_charcoal"
}
}

View File

@@ -0,0 +1,3 @@
{
"parent": "examplemod:block/block_of_charcoal"
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "examplemod:item/tutorial_book"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 822 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"name": "examplemod:block_of_charcoal",
"type": "minecraft:item"
}
],
"rolls": 1
}
]
}

View File

@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"C"
],
"key": {
"C": {
"item": "examplemod:block_of_charcoal"
}
},
"result": {
"item": "minecraft:charcoal",
"count": 9
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"CCC",
"CCC",
"CCC"
],
"key": {
"C": {
"item": "minecraft:charcoal"
}
},
"result": {
"item": "examplemod:block_of_charcoal"
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"D D",
"DDD",
"D D"
],
"key": {
"D": {
"item": "minecraft:diamond"
}
},
"result": {
"item": "minecraft:diamond_horse_armor"
}
}

View File

@@ -0,0 +1,24 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"SES",
"SDS",
"SSS"
],
"key": {
"S": {
"item": "minecraft:end_stone"
},
"E": {
"item": "minecraft:ender_eye"
},
"D": {
"item": "minecraft:dragon_egg"
}
},
"result": {
"item": "minecraft:end_portal_frame",
"count": 12
}
}

View File

@@ -0,0 +1,8 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": ["minecraft:arrow", "minecraft:ender_eye"],
"result": {
"item": "vt:ender_arrow"
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"BBB",
"BEB",
"BBB"
],
"key": {
"E": {
"item": "minecraft:emerald"
},
"B": {
"item": "minecraft:iron_bars"
},
},
"result": {
"item": "examplemod:experience_cage"
}
}

View File

@@ -0,0 +1,9 @@
{
"type": "minecraft:smelting",
"ingredients": {
"item": "minecraft:rotten_flesh"
},
"result": {
"item": "minecraft:leather"
}
}

View File

@@ -0,0 +1,23 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"FGF",
"GEG",
"GGG"
],
"key": {
"F": {
"item": "minecraft:feather"
},
"E": {
"item": "minecraft:elytra"
},
"G": {
"item": "minecraft:gold_ingot"
}
},
"result": {
"item": "examplemod:ring_of_flight"
}
}

View File

@@ -0,0 +1,13 @@
{
"type": "smithing",
"base": {
"item": "minecraft:diamond_boots"
},
"addition": {
"item": "minecraft:gold_block"
},
"result": {
"item": "examplemod:gold_diamond_boots"
}
}

View File

@@ -0,0 +1,13 @@
{
"type": "smithing",
"base": {
"item": "minecraft:diamond_chestplate"
},
"addition": {
"item": "minecraft:gold_block"
},
"result": {
"item": "examplemod:gold_diamond_chestplate"
}
}

View File

@@ -0,0 +1,13 @@
{
"type": "smithing",
"base": {
"item": "minecraft:diamond_helmet"
},
"addition": {
"item": "minecraft:gold_block"
},
"result": {
"item": "examplemod:gold_diamond_helmet"
}
}

View File

@@ -0,0 +1,13 @@
{
"type": "smithing",
"base": {
"item": "minecraft:diamond_leggings"
},
"addition": {
"item": "minecraft:gold_block"
},
"result": {
"item": "examplemod:gold_diamond_leggings"
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"G G",
"GGG",
"G G"
],
"key": {
"G": {
"item": "minecraft:gold_ingot"
}
},
"result": {
"item": "minecraft:golden_horse_armor"
}
}

View File

@@ -0,0 +1,13 @@
{
"type": "smithing",
"base": {
"item": "minecraft:netherite_boots"
},
"addition": {
"item": "minecraft:gold_block"
},
"result": {
"item": "examplemod:gold_netherite_boots"
}
}

View File

@@ -0,0 +1,13 @@
{
"type": "smithing",
"base": {
"item": "minecraft:netherite_chestplate"
},
"addition": {
"item": "minecraft:gold_block"
},
"result": {
"item": "examplemod:gold_netherite_chestplate"
}
}

View File

@@ -0,0 +1,13 @@
{
"type": "smithing",
"base": {
"item": "minecraft:netherite_helmet"
},
"addition": {
"item": "minecraft:gold_block"
},
"result": {
"item": "examplemod:gold_netherite_helmet"
}
}

View File

@@ -0,0 +1,13 @@
{
"type": "smithing",
"base": {
"item": "minecraft:netherite_leggings"
},
"addition": {
"item": "minecraft:gold_block"
},
"result": {
"item": "examplemod:gold_netherite_leggings"
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"I I",
"III",
"I I"
],
"key": {
"I": {
"item": "minecraft:iron_ingot"
}
},
"result": {
"item": "minecraft:iron_horse_armor"
}
}

View File

@@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shapeless",
"pattern": [
"SP "
],
"key": {
"S": {
"item": "minecraft:string"
},
"P": {
"item": "minecraft:paper"
}
},
"result": {
"item": "minecraft:name_tag"
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"N N",
"NNN",
"N N"
],
"key": {
"N": {
"item": "minecraft:netherite_ingot"
}
},
"result": {
"item": "examplemod:netherite_horse_armor"
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"LLL",
"T T",
" "
],
"key": {
"L": {
"item": "minecraft:leather"
},
"T": {
"item": "minecraft:tripwire_hook"
}
},
"result": {
"item": "minecraft:saddle"
}
}

View File

@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"WSW",
"W W",
"W W"
],
"key": {
"S": {
"item": "minecraft:string"
},
"W": {
"item": "minecraft:stick"
}
},
"result": {
"item": "minecraft:scaffolding",
"count": 6
}
}