Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
https://www.playdarktide.com/news/nightmares-visions-patch-notes
In the meantime, forgot to respond to the 2/7/2025 comment on stagger immune times, it looks like from psykhanium testing you can override staggers with different categories of stagger (e.g. light into heavy into explosion), you just can't override big staggers with littler staggers (e.g. heavy into light) - this is easily seen on the Karsolas Pickaxe push into bash on to a crusher!
scripts/utilities/attack/stagger_calculation.lua
and what happens on Stagger is in this LUA:
scripts/utilities/attack/stagger.lua
The second one has the behaviors on immune time - if an attack would stagger during a stagger immunity time, while it doesn't go trigger a new animation it does increase stagger count by +1 which affects blessings like No Respite.
Pool is separate from the stagger count - each attack adds its impact to the pool then it's compared to see if a new stagger should be recorded.
Hit mass affects cleave, not subsequent staggers - that's a different interaction.
Stagger immunity is based on the breed.LUA of the enemy in question specifying how long immune time is based on the stagger animation.
If you keep attacking during the immune timer, the stagger's not wasted, it just won't pop until the timer's over.
The stagger pool accumulates 50% of any impact that doesn't cause another stagger, and starts to decay after 0.2 seconds of no hits. The decay is linear over one second of no hits and the timer resets after a hit. This matches your experimental findings since waiting past that second the pool is at 0 and you have to do a full stagger again. It's easy to see this too on a push into hit combo like on a crusher where the push does a light stagger and the hit does a medium or heavy stagger.
Crushers have impact reduction per hit which reduces the efficacy of lots of little hits so big heavy hits are more likely to stagger as are special attacks with weak_spot stagger reduction like the Psyker Deimos Force Sword thrusting second heavy.
stagger_immune_times = {
[stagger_types.light] = 3,
[stagger_types.medium] = 4,
[stagger_types.heavy] = 6,
[stagger_types.explosion] = 4,
[stagger_types.light_ranged] = 3,
[stagger_types.sticky] = 0.25,
[stagger_types.killshot] = 6}
Each info can be found in each enemy's settings/breed LUA file like so for crushers: scripts/settings/breed/breeds/chaos/chaos_ogryn_executor_breed.lua
This is worth talking about in its own section in the guide so I'll try and get some enemy specific guidance in by end of Feb 2025