started moon rabbit entity

This commit is contained in:
Pyritie 2025-06-26 01:30:03 +01:00
parent f38215cb74
commit dad9acede5
7 changed files with 302 additions and 55 deletions

View file

@ -5,6 +5,7 @@ function registerTFCDataForTFG(event) {
registerTFGItemSize(event);
registerTFGSupportData(event);
registerTFGFoodData(event);
registerTFGFauna(event);
}
@ -122,4 +123,9 @@ const registerTFGFoodData = (event) => {
event.foodItem('tfg:food/meal_bag', food => {
food.type('dynamic')
})
}
const registerTFGFauna = (event) => {
event.fauna(climate => { }, fauna => { fauna.chance(0) }, 'tfg:moon_rabbit')
}