diff --git a/src/main/resources/assets/compressedtnt/lang/en_us.json b/src/main/resources/assets/compressedtnt/lang/en_us.json new file mode 100644 index 0000000..86ff80f --- /dev/null +++ b/src/main/resources/assets/compressedtnt/lang/en_us.json @@ -0,0 +1,15 @@ +{ + "block.compressedtnt.tnt_8": "Compressed TNT", + "block.compressedtnt.tnt_16": "Double Compressed TNT", + "block.compressedtnt.tnt_32": "Triple Compressed TNT", + "block.compressedtnt.tnt_64": "Quadruple Compressed TNT", + "block.compressedtnt.tnt_128": "Quintuple Compressed TNT", + "block.compressedtnt.tnt_cluster_2": "2× TNT Cluster", + "block.compressedtnt.tnt_cluster_4": "4× TNT Cluster", + "block.compressedtnt.tnt_cluster_8": "8× TNT Cluster", + "block.compressedtnt.tnt_homing": "Homing TNT", + "block.compressedtnt.tnt_black_hole": "Black Hole TNT", + "block.compressedtnt.tnt_claymore": "Claymore TNT", + + "item.compressedtnt.arrow_tnt": "TNT Arrow" +} \ No newline at end of file diff --git a/src/main/resources/data/compressedtnt/recipes/tnt_claymore.json b/src/main/resources/data/compressedtnt/recipes/tnt_claymore.json new file mode 100644 index 0000000..261b132 --- /dev/null +++ b/src/main/resources/data/compressedtnt/recipes/tnt_claymore.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "ingredients":[ + { + "item": "minecraft:tnt" + }, + { + "item": "minecraft:arrow" + }, + { + "item": "minecraft:arrow" + }, + { + "item": "minecraft:arrow" + }, + { + "item": "minecraft:arrow" + }, + { + "item": "minecraft:arrow" + }, + { + "item": "minecraft:arrow" + }, + { + "item": "minecraft:arrow" + }, + { + "item": "minecraft:arrow" + } + ], + "result": { + "item": "compressedtnt:tnt_claymore" + } +} \ No newline at end of file