Add more stone crafting materials
This commit is contained in:
parent
c7e17fd036
commit
b46465ea5f
24
data/minecraft/recipes/dispenser.json
Normal file
24
data/minecraft/recipes/dispenser.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "redstone",
|
||||
"key": {
|
||||
"#": {
|
||||
"tag": "minecraft:stone_crafting_materials"
|
||||
},
|
||||
"R": {
|
||||
"item": "minecraft:redstone"
|
||||
},
|
||||
"X": {
|
||||
"item": "minecraft:bow"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"###",
|
||||
"#X#",
|
||||
"#R#"
|
||||
],
|
||||
"result": {
|
||||
"item": "minecraft:dispenser"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
||||
21
data/minecraft/recipes/dropper.json
Normal file
21
data/minecraft/recipes/dropper.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "redstone",
|
||||
"key": {
|
||||
"#": {
|
||||
"tag": "minecraft:stone_crafting_materials"
|
||||
},
|
||||
"R": {
|
||||
"item": "minecraft:redstone"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"###",
|
||||
"# #",
|
||||
"#R#"
|
||||
],
|
||||
"result": {
|
||||
"item": "minecraft:dropper"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
||||
20
data/minecraft/recipes/lever.json
Normal file
20
data/minecraft/recipes/lever.json
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "redstone",
|
||||
"key": {
|
||||
"#": {
|
||||
"tag": "minecraft:stone_crafting_materials"
|
||||
},
|
||||
"X": {
|
||||
"item": "minecraft:stick"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"X",
|
||||
"#"
|
||||
],
|
||||
"result": {
|
||||
"item": "minecraft:lever"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
||||
24
data/minecraft/recipes/observer.json
Normal file
24
data/minecraft/recipes/observer.json
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "redstone",
|
||||
"key": {
|
||||
"#": {
|
||||
"tag": "minecraft:stone_crafting_materials"
|
||||
},
|
||||
"Q": {
|
||||
"item": "minecraft:quartz"
|
||||
},
|
||||
"R": {
|
||||
"item": "minecraft:redstone"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"###",
|
||||
"RRQ",
|
||||
"###"
|
||||
],
|
||||
"result": {
|
||||
"item": "minecraft:observer"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
||||
27
data/minecraft/recipes/piston.json
Normal file
27
data/minecraft/recipes/piston.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "redstone",
|
||||
"key": {
|
||||
"#": {
|
||||
"tag": "minecraft:stone_crafting_materials"
|
||||
},
|
||||
"R": {
|
||||
"item": "minecraft:redstone"
|
||||
},
|
||||
"T": {
|
||||
"tag": "minecraft:planks"
|
||||
},
|
||||
"X": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"TTT",
|
||||
"#X#",
|
||||
"#R#"
|
||||
],
|
||||
"result": {
|
||||
"item": "minecraft:piston"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
||||
10
data/minecraft/tags/items/stone_crafting_materials.json
Normal file
10
data/minecraft/tags/items/stone_crafting_materials.json
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"values": [
|
||||
"minecraft:andesite",
|
||||
"minecraft:granite",
|
||||
"minecraft:diorite",
|
||||
"minecraft:tuff",
|
||||
"minecraft:calcite",
|
||||
"minecraft:dripstone_block"
|
||||
]
|
||||
}
|
||||
Loading…
Reference in a new issue