Skip to content

Commit

Permalink
Revert "crafter is kil"
Browse files Browse the repository at this point in the history
This reverts commit 4e1bbe8.
  • Loading branch information
Vazkii committed Jan 7, 2024
1 parent 10df5ee commit 333e90b
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,7 @@
"quark:carved_mud_bricks",
"quark:mud_pillar",
"quark:mud_brick_lattice",
{ "id": "quark:crafter", "required": false },
{ "id": "quark:lootr_nether_brick_chest", "required": false },
{ "id": "quark:lootr_purpur_chest", "required": false },
{ "id": "quark:lootr_prismarine_chest", "required": false },
Expand Down
19 changes: 19 additions & 0 deletions src/main/resources/data/quark/loot_tables/blocks/crafter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "quark:crafter"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"III",
"ICI",
"RDR"
],
"key": {
"I": {
"tag": "forge:ingots/iron"
},
"C": {
"item": "minecraft:crafting_table"
},
"D": {
"item": "minecraft:dropper"
},
"R": {
"tag": "forge:dusts/redstone"
}
},
"result": {
"item": "quark:crafter"
},
"conditions": [
{
"type": "quark:flag",
"flag": "crafter"
}
]
}

0 comments on commit 333e90b

Please sign in to comment.