1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-03-17 20:58:13 +02:00

minor fix

This commit is contained in:
Gerkiz 2021-11-22 20:22:53 +01:00
parent e2b585f689
commit 43a9865dbc

View File

@ -1129,9 +1129,9 @@ function Public.boost_difficulty()
WD.set('next_wave', game.tick + 3600 * 15)
WPT.set('spidertron_unlocked_at_zone', 10)
WD.set_normal_unit_current_health(1.2)
WD.set_normal_unit_current_per_wave(0.08)
WD.set_normal_unit_current_per_wave(0.5)
WD.set_boss_unit_current_health(2)
WD.set_boss_unit_current_per_wave(0.15)
WD.set_boss_unit_current_per_wave(3)
WPT.set('difficulty_set', true)
elseif name == 'Hurt me plenty' then
force.manual_mining_speed_modifier = force.manual_mining_speed_modifier + 0.25
@ -1146,9 +1146,9 @@ function Public.boost_difficulty()
WD.set('next_wave', game.tick + 3600 * 8)
WPT.set('spidertron_unlocked_at_zone', 8)
WD.set_normal_unit_current_health(1.6)
WD.set_normal_unit_current_per_wave(0.12)
WD.set_normal_unit_current_per_wave(0.8)
WD.set_boss_unit_current_health(3)
WD.set_boss_unit_current_per_wave(0.20)
WD.set_boss_unit_current_per_wave(5)
WPT.set('difficulty_set', true)
elseif name == 'Ultra-violence' then
force.character_running_speed_modifier = 0
@ -1162,9 +1162,9 @@ function Public.boost_difficulty()
WD.set('next_wave', game.tick + 3600 * 5)
WPT.set('spidertron_unlocked_at_zone', 6)
WD.set_normal_unit_current_health(2)
WD.set_normal_unit_current_per_wave(0.2)
WD.set_normal_unit_current_per_wave(1)
WD.set_boss_unit_current_health(4)
WD.set_boss_unit_current_per_wave(0.4)
WD.set_boss_unit_current_per_wave(10)
WPT.set('difficulty_set', true)
end
end