neuralgia/kubejs/server_scripts/primitive_creatures/loot.js
Pyritie 6048af8042
Entity loot table changes (#1035)
* trying stuff, might delete later

* updated all loot tables so looting only affects animal meat drops
2025-05-18 21:11:53 +01:00

12 lines
No EOL
372 B
JavaScript

// priority: 0
function registerPrimitiveCreatesLoots(event) {
event.addEntityLootModifier('kaolinclayze:tfc')
.removeLoot(ItemFilter.ALWAYS_TRUE)
.addWeightedLoot([12,16], ['tfc:kaolin_clay', 'minecraft:clay_ball'])
event.addEntityLootModifier('kaolinclayze:golem_2')
.removeLoot(ItemFilter.ALWAYS_TRUE)
.addWeightedLoot([4,6], ['gtceu:rich_raw_graphite'])
}