MTTH modifiers in "death from illness" events
The base MTTH for death from illness events (event IDs 1001 and 1128) is 480 months, with the following modifiers based on the character's health:
It looks like the effects are cumulative, so you are actually penalized for having higher health!
For example:
7 health = 480 x 1.0 x .9 x .9 x .8 x .75 x .7 = 163.296 months
3 health = 480 x .75 x .7 = 252 months
The base MTTH for death from illness events (event IDs 1001 and 1128) is 480 months, with the following modifiers based on the character's health:
Code:
modifier = {
condition = { type = health value = 10 }
factor = 1.5
}
modifier = {
condition = { type = health value = 7 }
factor = 1.0
}
modifier = {
condition = { type = health value = 6 }
factor = 0.9
}
modifier = {
condition = { type = health value = 5 }
factor = 0.9
}
modifier = {
condition = { type = health value = 4 }
factor = 0.8
}
modifier = {
condition = { type = health value = 3 }
factor = 0.75
}
modifier = {
condition = { type = health value = 2 }
factor = 0.7
}
modifier = {
condition = { type = not value = { type = health value = 2 } }
factor = 0.1
}
7 health = 480 x 1.0 x .9 x .9 x .8 x .75 x .7 = 163.296 months
3 health = 480 x .75 x .7 = 252 months
Upvote
0