Nainstalovat Steam
přihlásit se
|
jazyk
简体中文 (Zjednodušená čínština)
繁體中文 (Tradiční čínština)
日本語 (Japonština)
한국어 (Korejština)
ไทย (Thajština)
български (Bulharština)
Dansk (Dánština)
Deutsch (Němčina)
English (Angličtina)
Español-España (Evropská španělština)
Español-Latinoamérica (Latin. španělština)
Ελληνικά (Řečtina)
Français (Francouzština)
Italiano (Italština)
Bahasa Indonesia (Indonéština)
Magyar (Maďarština)
Nederlands (Nizozemština)
Norsk (Norština)
Polski (Polština)
Português (Evropská portugalština)
Português-Brasil (Brazilská portugalština)
Română (Rumunština)
Русский (Ruština)
Suomi (Finština)
Svenska (Švédština)
Türkçe (Turečtina)
Tiếng Việt (Vietnamština)
Українська (Ukrajinština)
Nahlásit problém s překladem
Lower mood = easier conversion
Higher mood = easier recruitment
The higher a pawns mood the more passive certainty they passively gain daily in their current ideo. The lower a pawns mood the lower passive certainty they gain.
Resistance never lowers or raises on it's own but it will go down faster if they're happy but they'll be recruited eventually either way so I find it unrewarding to bother making them happy.
I didn't like that the gizmo button was diffrent than the other beds though, I changed it by replacing
[HarmonyPatch(typeof(Building_Bed), "GetGizmos")]
class PatchBuilding_BedGetGizmos
{
...
}
with
[HarmonyPatch(typeof(CompAssignableToPawn_Bed), "ShouldShowAssignmentGizmo")]
class PatchShouldShowAssignmentGizmo
{
static void Postfix(ref bool __result, CompAssignableToPawn __instance)
{
if (!__result) {
Building_Bed bed = __instance.parent as Building_Bed;
if (bed.Faction == Faction.OfPlayer && bed.ForPrisoners && !bed.Medical)
{
__result = true;
}
}
}
}
in PatchPrisonerBeds.cs
Consider getting wololoo
Prisoners with high moods will start to doubt their ideology making it easier to convert them without needing to move them around.
This is exactly what I need! Does it work for 1.5?
Once I'm done with the genetic research, prisoners will probably all be dumped into the same cell again, patched up and let go. Or immediately turned into mechanoid brains. Either way, separate cells and bed assignments won't be needed anymore, so I'm thinking to remove it then, if it really is responsible for the behavior I described in my previous comment.