You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
autohero/backend/migrations/000041_runtime_config_enemy...

10 lines
291 B
SQL

-- Enemy swings: longer interval only for monsters, stronger per-hit damage (~same incoming DPS).
UPDATE runtime_config
SET
payload = payload || '{
"enemyAttackIntervalMultiplier": 1.5,
"enemyCombatDamageScale": 1.0
}'::jsonb,
updated_at = now()
WHERE id = TRUE;