added changelog generator and updated configs

This commit is contained in:
2024-09-26 00:09:01 +02:00
parent 330f2c778c
commit f24c55858c
99 changed files with 9198 additions and 217 deletions

15
config/giantspawn.json5 Normal file
View File

@@ -0,0 +1,15 @@
{
// The chance a zombie that has spawned on the surface is a giant.
// min: 0.0, max: 1.0
"chanceSurfaceZombieIsGiant": 0.05,
// If enabled, burns giants when daylight shines upon them.
"shouldBurnGiantsInDaylight": true,
// If enabled, a giant will only spawn on the surface.
"onlySpawnGiantOnSurface": true,
// The giant movement speed modifier relative to the base zombie movement speed.
// min: 0.0, max: 20.0
"giantMovementSpeedModifier": 1.0,
// The giant attack damage modifier relative to the base zombie attack damage.
// min: 0.0, max: 20.0
"giantAttackDamageModifier": 2.0
}