RimWorld

RimWorld

The Dead Man's Switch - MobileDragoon
Can Ghouls mount Dragoons?
Can't access game right now and for some reason can't search on this app.

Can ghouls use the dragoon suits? Have an idea for a Frank Harrigan style character and if I could force them into a dragoon suit I'd be very happy.
< >
Showing 1-1 of 1 comments
You can try to modify the Exosuit Framework'file from Github: .source\Thing\Building_MaintenanceBay.cs

public virtual AcceptanceReport AcceptablePawnKind(Pawn pawn)
{
if (GetComp<CompPowerTrader>()?.PowerOn ?? false)
{
return "NoPower".Translate().CapitalizeFirst();
}
/*Obscuring this judgment: Is the driver human?
if (!pawn.RaceProps.Humanlike || pawn.IsQuestLodger() || !pawn.IsColonist && !pawn.IsSlaveOfColony && !pawn.IsPrisonerOfColony && (pawn.IsColonySubhumanPlayerControlled || pawn.IsGhoul))
{
return "PawnNotQualified".Translate(pawn.Name.ToString()).CapitalizeFirst();
}
*/
return true ;
}

But I must say: I tried to modify it this way, and although it allows the synthetic to enter the Exosuit, the Exosuit texture is transparent, and it feels like the synthetic is floating in the air.
< >
Showing 1-1 of 1 comments
Per page: 1530 50