mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
5555083bc2
- Made a jobgiver similar to Jobgiver GetHemogen - currently only job is to eat cum from sexperience - other thinks are done via thinktree - Made thinknodes and thinktrees so that a succubus will seek sex when below target value and try and rape when critically low.
14 lines
No EOL
242 B
C#
14 lines
No EOL
242 B
C#
using System;
|
|
using Verse;
|
|
using Verse.AI;
|
|
|
|
namespace RJW_Genes
|
|
{
|
|
public class ThinkNode_ConditionalLowLifeForce : ThinkNode_Conditional
|
|
{
|
|
protected override bool Satisfied(Pawn p)
|
|
{
|
|
return GeneUtility.HasLowLifeForce(p);
|
|
}
|
|
}
|
|
} |