Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix seemingly bugged eldrich hunter capture chance #1358

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

cbondurant
Copy link
Contributor

Related to issue #1199
Gives a catch rate that is forgiving enough to allow actually filling the amount of captive housing that can be built.

To summarize the change:
currently the chance of capturing an additional captive (Not taking into account additional traits such as sniper)
1 / ((50 * number of captives) - (number of raiders * military research rank))

With the current highest military weapon strength being 10 (without additional traits), this imposes an end-game soft cap on captives/thralls of 1/5th the number of assigned raiders. Where below this soft cap capture is certain, and beyond the soft cap the chance of capture drops off so quickly that you are unlikely to get more than 10 or 20 additional captives no matter how long you were to wait. (the chance of getting your 20th captive past the soft cap is 0.1% per in game day)

The new system instead has a chance of:
(number of raiders * military research rank) / (50 * number of captives)
to obtain a new captive each day.
Which also, given the <= 0 comparison in the code, seems likely to have been the original intention for this mechanic.

Thank you for your time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant