stuff and things

This commit is contained in:
Pyritie 2026-01-31 18:50:46 +00:00
parent 11d83ff913
commit 34c4bb5fb4
8 changed files with 84 additions and 9 deletions

View file

@ -86,6 +86,26 @@ function registerTFGFauna(event) {
},
"wan_ancient_beasts:crusher")
event.fauna(
climate => {
climate.minTemp(-109)
climate.fuzzy(true)
},
faunaData => {
faunaData.solidGround(true)
},
"wan_ancient_beasts:raider")
event.fauna(
climate => {
climate.minTemp(-107)
climate.fuzzy(true)
},
faunaData => {
faunaData.solidGround(true)
},
"wan_ancient_beasts:charger")
event.fauna(
climate => {
climate.minTemp(-105)
@ -105,4 +125,14 @@ function registerTFGFauna(event) {
faunaData.solidGround(true)
},
"wan_ancient_beasts:glider")
event.fauna(
climate => {
climate.minTemp(-105)
climate.fuzzy(true)
},
faunaData => {
faunaData.solidGround(true)
},
"wan_ancient_beasts:snatcher")
}