wraptor loot tables, added feathers

This commit is contained in:
Pyritie 2025-09-22 19:21:33 +01:00
parent 97ef042261
commit 6a993af48d
2 changed files with 13 additions and 1 deletions

View file

@ -173,11 +173,20 @@ function registerTFGLoots(event) {
event.addEntityLootModifier('tfg:sniffer')
.addWeightedLoot([5, 8], ['minecraft:bone'])
.addWeightedLoot([16, 20], ['tfg:food/raw_sniffer_beef'])
event.addEntityLootModifier('tfg:sniffer')
.matchMainHand('#forge:tools/butchery_knives')
.addWeightedLoot([8, 10], ['tfg:food/raw_sniffer_beef'])
// TODO: wraptor meat?
event.addEntityLootModifier('tfg:wraptor')
.addWeightedLoot([2, 3], ['minecraft:bone'])
.addWeightedLoot([2, 4], ['minecraft:feather'])
.addWeightedLoot([4, 7], ['tfg:food/raw_wraptor'])
event.addEntityLootModifier('tfg:wraptor')
.matchMainHand('#forge:tools/butchery_knives')
.addWeightedLoot([2, 3], ['tfg:food/raw_wraptor'])
};

View file

@ -5,6 +5,7 @@ function registerWansAncientBeastsLoots(event) {
event.addEntityLootModifier('wan_ancient_beasts:crusher')
.addWeightedLoot([2, 4], ['minecraft:bone'])
.addWeightedLoot([2, 4], ['wan_ancient_beasts:crusher_spike'])
.addWeightedLoot([4, 7], ['tfg:food/raw_crusher_meat'])
event.addEntityLootModifier('wan_ancient_beasts:crusher')
@ -14,6 +15,7 @@ function registerWansAncientBeastsLoots(event) {
event.addEntityLootModifier('wan_ancient_beasts:glider')
.addWeightedLoot([1, 3], ['minecraft:bone'])
.addWeightedLoot([2, 4], ['wan_ancient_beasts:glider_feather'])
.addWeightedLoot([6, 8], ['tfg:food/raw_glider_wings'])
event.addEntityLootModifier('wan_ancient_beasts:glider')
@ -23,6 +25,7 @@ function registerWansAncientBeastsLoots(event) {
event.addEntityLootModifier('wan_ancient_beasts:soarer')
.addWeightedLoot([1, 3], ['minecraft:bone'])
.addWeightedLoot([2, 4], ['minecraft:feather'])
.addWeightedLoot([2, 4], ['tfg:food/raw_whole_soarer'])
event.addEntityLootModifier('wan_ancient_beasts:soarer')