mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
400b48787d
- 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
19 lines
483 B
C#
19 lines
483 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Verse;
|
|
using RimWorld;
|
|
|
|
namespace RJW_Genes
|
|
{
|
|
[DefOf]
|
|
public static class HediffDefOf
|
|
{
|
|
public static readonly HediffDef Aphrodisiac_Pheromone;
|
|
public static readonly HediffDef Fertilin_Lost;
|
|
public static readonly HediffDef Succubus_Drained;
|
|
public static readonly HediffDef rjw_genes_sexually_exhausted;
|
|
}
|
|
}
|