I recently had an Idea how monks could be made free of rng while still keeping the “one by one” conversion effect.
The core of this idea are 3 added ressouces to the civs.
The idea is only for converting units, buildings should have their own system.
The most important change is that every unit will get a conversion threshold. This is how many monk seconds a single monk would need to convert that unit.
One that tracks all currently active conversions. Just the sum of them.
Let’s call that n.
One that tracks the accumulated sum of all currently invested “monk juice” into conversion. So every time a “monk second” is applied to a conversion, this ressource goes up by 1. If a conversion is successfull the needed threshold for that conversion (the conversion threshold of the converted unit) is substracted from that ressource.
Let’s call this j.
Lastly one ressource that counts the sum of all the ressource threshold of the currently targeted enemy units to convert. Whenever you target an enemy unit with one of your monks that unit conversion threshold is added and whenever the conversion is interrupted or the unit is successfully converted the threshold is substracted. (Optimally it just adds up all currently active conversion thresholds togehter as techs like faith or teutons bonus can change the threshold while a conversion is ongoing)
Let’s call this t.
So how the game determines if a conversion is successfull?
When a Monk “shots” its Monk second on an enemey unit, first 1 is added to j.
Then there is the proof if j >= t * (n+1) / (2n). If this is true, the conversion is successfull, otherwise not.
This is a compromise between “A lot of conversions lead to a lot of “lucky” ones”" and “A lot of conversions are all “unlucky””. If there are a lot of conversions ongoing this will result in the first conversion being basically twice as fast as a 1 by 1 conversion, but once there is only 1 conversion ongoing, this one will basically need another full conversion period to happen. I have 2 examples for 5 or 10 units with a conversion threshold of 10 seconds, how long it will take for each conversion to happen.
Conversion | 1 | 2 | 3 | 4 | 5 |
---|---|---|---|---|---|
at Second | 6 | 8 | 9 | 12 | 17 |
Conversion | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
---|---|---|---|---|---|---|---|---|---|---|
at Second | 6 | 7 | 7 | 8 | 9 | 10 | 11 | 13 | 15 | 20 |
On averagethe convervsion time is still 10 seconds (if you don’t account for rounding always up due to the “monk second” mechanic. (Achieving the same average as for single conversions is the result of that formula I postponed at the beginning, t * (n+1) / 2n. This inverses the effect of the staggered conversions over one single ressource.
The effect is for high amount of conversion similar to the randomness of the current conversion mechanic. But with the difference that there is absolutely no randomness involved.
Ofc this will also have some side effects I haven’t looked into much yet.
One is if we have conversions on units with different conversion thresholds. Converting a unit with a high conversion thresold will increase the conversion time of ALL units until this unit is converted. But also the other way around, if you try to convert units with high conversion resistance you can also target some other enemy units with a lower resistance, this will reduce all conversion times. There is then also no preference, so if you target a unit with a conversion threshold of 5 and one with 10, after 6 seconds you will convert either of them, completely neglecting the individual conversion thresholds.
I think this can be branded as a “feature”, open to figure out for the community if there are some advantageous strategies in your targeting.
Edit: Note that there is stil no randomness involved. Which unit will be converted will be determined by the order and timing in which you target the enemy units but aswell the movement of the units, when they are in conversion distance and when not. It’s just that there is no preference, not that there would be no way to influence. It’s only not clear to me if there is an advantageous strat like "target first 5 “hard to convert” units and then 5 “easy to convert” units or something like this to get faster conversions on hard to convert units or whatever.
Then there is the question what happens with the “loaded up” j ressource if the opponent completely disengages and there are no ongoing conversions. First, when this happens it is very likely that you will get some conversions of the disengaging enemy. Cause you will load up your j value. When then the number of ongoing conversions is reduced, the t value goes down while you still have a high j value. Resulting in a few conversions of the disengaging enemy forces. But what happens if for some reason (maybe monks killed or whatever) the j value is still high but no conversion ongoing?
I would say, that if n = 0, then the j value if it’s bigger than a set maximum value (for example 3) will be tuned down to that max value. I think this is important, so even IF this happens, there will still be no insta conversion possible, just a faster conversion than regular (faster by that amount of monk seconds).
For buildings I would make a completely independent conversion system. Also with an indicator bar how far the current conversion is actually, so you know when it makes sense to delete the building and when you can try to kill the converting monk. I don’t think it’s good to “charge” your conversion on buildings before switching to units.
Edit: This method would also allow for much more sophisticated unit designs, as it would allow to give each unit a completely independent conversion threshold. So slower melee units could eg. get a way higher threshold than faster ranged units to compensate for their harder / easier matchup vs monks. Also more expensive units like eles could just get a way higher threshold so monks would just need a bit longer to convert them.