Several genes and changes

- Succubus wings now have the flight abilty (same as longjump)
- Modified aphrodisiac pheromones to increase with strenght based on carrier's sexdrive.
- Added paralysing kiss, touch range stun which uses fertilin
- Added seduce, beckon like ability which results in sex if target reached caster. Uses fertilin
This commit is contained in:
Shabakur 2023-01-06 12:42:04 +01:00
parent 5555083bc2
commit 400b48787d
25 changed files with 687 additions and 171 deletions

View file

@ -19,17 +19,14 @@ namespace RJW_Genes.Interactions
Pawn pawn = context.Internals.Dominant.Pawn;
if (GeneUtility.HasCriticalLifeForce(pawn))
{
Log.Message("Critical");
yield return new Weighted<LewdablePartKind>(50f, LewdablePartKind.Mouth);
}
else if (GeneUtility.HasLowLifeForce(pawn))
{
Log.Message("Low");
yield return new Weighted<LewdablePartKind>(10f, LewdablePartKind.Mouth);
}
else if (GeneUtility.HasLifeForce(pawn))
{
Log.Message("normal");
yield return new Weighted<LewdablePartKind>(2f, LewdablePartKind.Mouth);
}
yield break;
@ -40,17 +37,14 @@ namespace RJW_Genes.Interactions
Pawn pawn = context.Internals.Submissive.Pawn;
if (GeneUtility.HasCriticalLifeForce(pawn))
{
Log.Message("Critical");
yield return new Weighted<LewdablePartKind>(50f, LewdablePartKind.Mouth);
}
else if (GeneUtility.HasLowLifeForce(pawn))
{
Log.Message("Low");
yield return new Weighted<LewdablePartKind>(10f, LewdablePartKind.Mouth);
}
else if (GeneUtility.HasLifeForce(pawn))
{
Log.Message("normal");
yield return new Weighted<LewdablePartKind>(2f, LewdablePartKind.Mouth);
}
yield break;