add replaceable tag to sand piles and loose rocks

This commit is contained in:
Pyritie 2026-02-10 14:09:43 +00:00
parent dfd673c369
commit 06491bbca3

View file

@ -96,4 +96,22 @@ function registerTFGGeneralWorldgenBlockTags(event) {
event.add('minecraft:mineable/shovel', 'tfg:pile/mars_sand_covering')
event.add('minecraft:mineable/shovel', 'tfg:pile/venus_sand_covering')
event.add('minecraft:mineable/shovel', 'tfg:pile/hematitic_sand_covering')
event.add('minecraft:replaceable', 'tfg:ash_pile')
event.add('minecraft:replaceable', 'tfg:pile/black_sand')
event.add('minecraft:replaceable', 'tfg:pile/white_sand')
event.add('minecraft:replaceable', 'tfg:pile/brown_sand')
event.add('minecraft:replaceable', 'tfg:pile/red_sand')
event.add('minecraft:replaceable', 'tfg:pile/yellow_sand')
event.add('minecraft:replaceable', 'tfg:pile/pink_sand')
event.add('minecraft:replaceable', 'tfg:pile/green_sand')
event.add('minecraft:replaceable', 'tfg:pile/moon_sand')
event.add('minecraft:replaceable', 'tfg:pile/mars_sand')
event.add('minecraft:replaceable', 'tfg:pile/venus_sand')
event.add('minecraft:replaceable', 'tfg:pile/hematitic_sand')
event.add('minecraft:replaceable', 'tfg:pile/mars_sand_covering')
event.add('minecraft:replaceable', 'tfg:pile/venus_sand_covering')
event.add('minecraft:replaceable', 'tfg:pile/hematitic_sand_covering')
event.add('minecraft:replaceable', '#tfc:loose_rocks')
}