-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-- more u240.3 code updates - fix cloaker & elite shield hurt severity crash - fix shotgunbase crash - remove obsolete drill code - fix extra recoil from the previous u240.3 code update - update dot code for u240.3
- Loading branch information
1 parent
e1c3663
commit 59528b7
Showing
12 changed files
with
182 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
-- rework poison cloud DOT | ||
Hooks:PostHook(DOTTweakData, "init", "eclipse_init", function(self) | ||
self.dot_entries.poison.proj_gas_grenade_cloud.hurt_animation_chance = 1 | ||
self.dot_entries.poison.proj_gas_grenade_cloud.dot_damage = 8 | ||
self.dot_entries.poison.proj_gas_grenade_cloud.dot_tick_period = 2 | ||
self.dot_entries.poison.proj_gas_grenade_cloud.dot_length = 10 | ||
self.dot_entries.poison.proj_launcher_cloud.hurt_animation_chance = 0.3 | ||
self.dot_entries.poison.proj_launcher_cloud.dot_damage = 4 | ||
self.dot_entries.poison.proj_launcher_cloud.dot_tick_period = 2 | ||
self.dot_entries.poison.proj_launcher_cloud.dot_length = 10 | ||
self.dot_entries.poison.proj_launcher_arbiter_cloud.hurt_animation_chance = 0.3 | ||
self.dot_entries.poison.proj_launcher_arbiter_cloud.dot_damage = 4 | ||
self.dot_entries.poison.proj_launcher_arbiter_cloud.dot_tick_period = 2 | ||
self.dot_entries.poison.proj_launcher_arbiter_cloud.dot_length = 10 | ||
end) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Hooks:PostHook(FireTweakData, "_init_dot_entries_fire", "eclipse__init_dot_entries_fire", function(self, fire_entries) | ||
-- incendiary | ||
fire_entries.proj_fire_com.dot_damage = 30 | ||
fire_entries.proj_fire_com.dot_length = 5 | ||
|
||
-- flamer dot (might just rework later) | ||
fire_entries.weapon_flamethrower_mk2 = { | ||
dot_trigger_chance = 50, | ||
dot_damage = 7.5, | ||
dot_length = 1.1, | ||
dot_tick_period = 0.5, | ||
dot_trigger_max_distance = false, | ||
} | ||
fire_entries.ammo_flamethrower_mk2_rare = deep_clone(fire_entries.weapon_flamethrower_mk2) | ||
fire_entries.ammo_flamethrower_mk2_welldone = deep_clone(fire_entries.weapon_flamethrower_mk2) | ||
|
||
-- db dot (might rework too) | ||
fire_entries.ammo_dragons_breath = { | ||
dot_trigger_chance = 1, | ||
dot_damage = 3, | ||
dot_length = 4, | ||
dot_trigger_max_distance = 1500, | ||
dot_tick_period = 0.25, | ||
} | ||
end) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.