fix #2305, also buffed its loot
This commit is contained in:
parent
c3017574b3
commit
d1d7c859ba
3 changed files with 6 additions and 4 deletions
|
|
@ -38,6 +38,7 @@ Added TFC Gurman, which adds even more food and drink
|
|||
- Fixed recipe conflict with Epichlorohydrin and Sodium Hypochlorite (#2287) @Pyritie
|
||||
- Fixed summoned pet endermen not being able to survive in space or other planets @Pyritie
|
||||
- Fixed some recipe imbalances with trimethyl borate and related recipes @Pyritie
|
||||
- Fixed not being able to feed meat to the Cruncher (#2305) @Pyritie
|
||||
### Translation updates
|
||||
- Chinese (simplified) @jmecn
|
||||
- Japanese @sakura-gondra
|
||||
|
|
|
|||
|
|
@ -41,14 +41,15 @@ function registerSpeciesLoots(event) {
|
|||
|
||||
|
||||
event.addEntityLootModifier('species:cruncher')
|
||||
.addLoot('tfc:large_raw_hide')
|
||||
.addLoot('species:music_disk_spawner')
|
||||
.addWeightedLoot([3, 4], ['tfc:large_raw_hide'])
|
||||
.addWeightedLoot([10, 13], ['minecraft:bone'])
|
||||
.addWeightedLoot([14, 24], ['tfg:food/raw_cruncher_ribs'])
|
||||
.addWeightedLoot([24, 36], ['tfg:food/raw_cruncher_ribs'])
|
||||
.addSequenceLoot(LootEntry.of('species:cruncher_egg').when(c => c.randomChance(0.5)))
|
||||
|
||||
event.addEntityLootModifier('species:cruncher')
|
||||
.matchMainHand('#forge:tools/butchery_knives')
|
||||
.addWeightedLoot([7, 12], ['tfg:food/raw_cruncher_ribs'])
|
||||
.addWeightedLoot([12, 18], ['tfg:food/raw_cruncher_ribs'])
|
||||
|
||||
|
||||
event.addEntityLootModifier('species:stackatick')
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ const registerSpeciesItemTags = (event) => {
|
|||
event.add('tfg:martian_eggs', 'species:petrified_egg')
|
||||
|
||||
event.add('species:goober_breed_items', '#forge:mushrooms')
|
||||
event.add('species:cruncher_eats', '#tfc:foods/meat')
|
||||
event.add('species:cruncher_eats', '#tfc:foods/meats')
|
||||
|
||||
event.add('tfc:compost_greens', 'species:alphacene_mushroom_block')
|
||||
event.add('tfc:compost_greens_low', 'species:alphacene_mushroom_growth')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue