Advertisement
Guest User

Untitled

a guest
Jun 10th, 2025
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.06 KB | None | 0 0
  1. folder structure
  2.  
  3. anti_stone_iron/
  4. ├─ pack.mcmeta
  5. └─ data/
  6.    └─ minecraft/
  7.       └─ loot_tables/
  8.          └─ blocks/
  9.             ├─ iron_ore.json
  10.             └─ deepslate_iron_ore.json
  11.  
  12. - pack.mcmeta :
  13. {
  14.   "pack": {
  15.     "pack_format": 18,
  16.     "description": "No iron from stone pickaxes"
  17.   }
  18. }
  19.  
  20. - iron_ore.json (and deepslate_iron-ore.json) :
  21.  
  22. {
  23.   "type": "minecraft:block",
  24.   "pools": [
  25.     {
  26.       "rolls": 1,
  27.       "entries": [
  28.         {
  29.           "type": "minecraft:item",
  30.           "name": "minecraft:raw_iron"
  31.         }
  32.       ],
  33.       "conditions": [
  34.         {
  35.           "condition": "minecraft:match_tool",
  36.           "predicate": {
  37.             "items": [
  38.               "bettercopper:copper_pickaxe",
  39.               "minecraft:iron_pickaxe",
  40.               "minecraft:diamond_pickaxe",
  41.               "minecraft:netherite_pickaxe"
  42.             ]
  43.           }
  44.         }
  45.       ],
  46.       "functions": [
  47.         {
  48.           "function": "minecraft:set_count",
  49.           "count": 1
  50.         }
  51.       ]
  52.     }
  53.   ]
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement