mirror of
https://gitgud.io/c0ffeeeeeeee/rjw-events.git
synced 2024-08-14 23:57:42 +00:00
30 lines
599 B
C#
30 lines
599 B
C#
|
using rjw;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Verse.AI;
|
|||
|
|
|||
|
namespace RJW_Events
|
|||
|
{
|
|||
|
class JobDriver_GetNaked : JobDriver
|
|||
|
{
|
|||
|
public override bool TryMakePreToilReservations(bool errorOnFailed)
|
|||
|
{
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
protected override IEnumerable<Toil> MakeNewToils()
|
|||
|
{
|
|||
|
Toil t = new Toil();
|
|||
|
t.AddFinishAction(() => {
|
|||
|
|
|||
|
SexUtility.DrawNude(pawn);
|
|||
|
|
|||
|
});
|
|||
|
yield return t;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|