コード例 #1
0
        public override bool GizmoDisabled(out string reason)
        {
            LordJob_Joinable_Speech lordJob_Joinable_Speech = parent.pawn.GetLord()?.LordJob as LordJob_Joinable_Speech;

            if (lordJob_Joinable_Speech != null && lordJob_Joinable_Speech.Organizer == parent.pawn)
            {
                reason = "AbilitySpeechDisabledAlreadyGivingSpeech".Translate();
                return(true);
            }
            if (GatheringsUtility.AnyLordJobPreventsNewGatherings(parent.pawn.Map))
            {
                reason = "AbilitySpeechDisabledAnotherGatheringInProgress".Translate();
                return(true);
            }
            Building_Throne assignedThrone = parent.pawn.ownership.AssignedThrone;

            if (assignedThrone == null)
            {
                reason = "AbilitySpeechDisabledNoThroneAssigned".Translate();
                return(true);
            }
            if (!parent.pawn.CanReserveAndReach(assignedThrone, PathEndMode.InteractionCell, parent.pawn.NormalMaxDanger()))
            {
                reason = "AbilitySpeechDisabledNoThroneIsNotAccessible".Translate();
                return(true);
            }
            if (parent.pawn.royalty.GetUnmetThroneroomRequirements().Any())
            {
                reason = "AbilitySpeechDisabledNoThroneUndignified".Translate();
                return(true);
            }
            reason = null;
            return(false);
        }
コード例 #2
0
 public static string OutcomeBreakdownForPawn(Pawn organizer)
 {
     return("AbilitySpeechStatInfo".Translate(organizer.Named("ORGANIZER"), StatDefOf.SocialImpact.label) + ": " + organizer.GetStatValue(StatDefOf.SocialImpact).ToStringPercent() + "\n\n" + "AbilitySpeechPossibleOutcomes".Translate() + ":\n" + (from o in LordJob_Joinable_Speech.OutcomeChancesForPawn(organizer).Reverse()
                                                                                                                                                                                                                                                      select o.Item1.stages[0].LabelCap + " " + o.Item2.ToStringPercent()).ToLineList("  - "));
 }