update
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"variants": {
|
||||
"": { "model": "examplemod:block/block_of_charcoal" }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "examplemod:block/block_of_charcoal"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "examplemod:block/block_of_charcoal"
|
||||
}
|
||||
@@ -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 |
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"type": "minecraft:block",
|
||||
"pools": [
|
||||
{
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:survives_explosion"
|
||||
}
|
||||
],
|
||||
"entries": [
|
||||
{
|
||||
"name": "examplemod:block_of_charcoal",
|
||||
"type": "minecraft:item"
|
||||
}
|
||||
],
|
||||
"rolls": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
16
src/main/resources/data/examplemod/recipes/charcoal.json
Normal file
16
src/main/resources/data/examplemod/recipes/charcoal.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"C"
|
||||
],
|
||||
"key": {
|
||||
"C": {
|
||||
"item": "examplemod:block_of_charcoal"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "minecraft:charcoal",
|
||||
"count": 9
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"CCC",
|
||||
"CCC",
|
||||
"CCC"
|
||||
],
|
||||
"key": {
|
||||
"C": {
|
||||
"item": "minecraft:charcoal"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "examplemod:block_of_charcoal"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": ["minecraft:arrow", "minecraft:ender_eye"],
|
||||
|
||||
"result": {
|
||||
"item": "vt:ender_arrow"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"type": "minecraft:smelting",
|
||||
"ingredients": {
|
||||
"item": "minecraft:rotten_flesh"
|
||||
},
|
||||
"result": {
|
||||
"item": "minecraft:leather"
|
||||
}
|
||||
}
|
||||
23
src/main/resources/data/examplemod/recipes/flight_ring.json
Normal file
23
src/main/resources/data/examplemod/recipes/flight_ring.json
Normal 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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "smithing",
|
||||
"base": {
|
||||
"item": "minecraft:diamond_boots"
|
||||
},
|
||||
"addition": {
|
||||
"item": "minecraft:gold_block"
|
||||
},
|
||||
"result": {
|
||||
"item": "examplemod:gold_diamond_boots"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "smithing",
|
||||
"base": {
|
||||
"item": "minecraft:diamond_chestplate"
|
||||
},
|
||||
"addition": {
|
||||
"item": "minecraft:gold_block"
|
||||
},
|
||||
"result": {
|
||||
"item": "examplemod:gold_diamond_chestplate"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "smithing",
|
||||
"base": {
|
||||
"item": "minecraft:diamond_helmet"
|
||||
},
|
||||
"addition": {
|
||||
"item": "minecraft:gold_block"
|
||||
},
|
||||
"result": {
|
||||
"item": "examplemod:gold_diamond_helmet"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "smithing",
|
||||
"base": {
|
||||
"item": "minecraft:diamond_leggings"
|
||||
},
|
||||
"addition": {
|
||||
"item": "minecraft:gold_block"
|
||||
},
|
||||
"result": {
|
||||
"item": "examplemod:gold_diamond_leggings"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "smithing",
|
||||
"base": {
|
||||
"item": "minecraft:netherite_boots"
|
||||
},
|
||||
"addition": {
|
||||
"item": "minecraft:gold_block"
|
||||
},
|
||||
"result": {
|
||||
"item": "examplemod:gold_netherite_boots"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "smithing",
|
||||
"base": {
|
||||
"item": "minecraft:netherite_chestplate"
|
||||
},
|
||||
"addition": {
|
||||
"item": "minecraft:gold_block"
|
||||
},
|
||||
"result": {
|
||||
"item": "examplemod:gold_netherite_chestplate"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "smithing",
|
||||
"base": {
|
||||
"item": "minecraft:netherite_helmet"
|
||||
},
|
||||
"addition": {
|
||||
"item": "minecraft:gold_block"
|
||||
},
|
||||
"result": {
|
||||
"item": "examplemod:gold_netherite_helmet"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "smithing",
|
||||
"base": {
|
||||
"item": "minecraft:netherite_leggings"
|
||||
},
|
||||
"addition": {
|
||||
"item": "minecraft:gold_block"
|
||||
},
|
||||
"result": {
|
||||
"item": "examplemod:gold_netherite_leggings"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
18
src/main/resources/data/examplemod/recipes/name_tag.json
Normal file
18
src/main/resources/data/examplemod/recipes/name_tag.json
Normal 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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
20
src/main/resources/data/examplemod/recipes/saddle.json
Normal file
20
src/main/resources/data/examplemod/recipes/saddle.json
Normal 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"
|
||||
}
|
||||
}
|
||||
|
||||
21
src/main/resources/data/examplemod/recipes/scaffolding.json
Normal file
21
src/main/resources/data/examplemod/recipes/scaffolding.json
Normal 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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user