13 lines
No EOL
409 B
JavaScript
13 lines
No EOL
409 B
JavaScript
// priority: 0
|
|
|
|
function registerPrimitiveCreaturesLoots(event) {
|
|
|
|
event.addEntityLootModifier('kaolinclayze:tfc')
|
|
.removeLoot(ItemFilter.ALWAYS_TRUE)
|
|
.addWeightedLoot([12,16], ['tfc:kaolin_clay', 'minecraft:clay_ball'])
|
|
.addLoot('tfc:plant/blood_lily')
|
|
|
|
event.addEntityLootModifier('kaolinclayze:golem_2')
|
|
.removeLoot(ItemFilter.ALWAYS_TRUE)
|
|
.addWeightedLoot([3,5], ['gtceu:rich_raw_graphite'])
|
|
} |