code
stringlengths 0
56.1M
| repo_name
stringlengths 3
57
| path
stringlengths 2
176
| language
stringclasses 672
values | license
stringclasses 8
values | size
int64 0
56.8M
|
|---|---|---|---|---|---|
using System;
using RimWorld;
using UnityEngine;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Colonists and prisoners try to rape CP
/// </summary>
public class ThinkNode_ChancePerHour_RapeCP : ThinkNode_ChancePerHour
{
protected override float MtbHours(Pawn pawn)
{
var base_mtb = xxx.config.comfort_prisoner_rape_mtbh_mul; //Default 4.0
float desire_factor;
{
var need_sex = pawn.needs.TryGetNeed<Need_Sex>();
if (need_sex != null)
{
if (need_sex.CurLevel <= need_sex.thresh_frustrated())
desire_factor = 0.10f;
else if (need_sex.CurLevel <= need_sex.thresh_horny())
desire_factor = 0.50f;
else
desire_factor = 1.00f;
}
else
desire_factor = 1.00f;
}
float personality_factor;
{
personality_factor = 1.0f;
if (xxx.has_traits(pawn))
{
// Most of the checks are done in the SexAppraiser.would_rape method.
personality_factor = 1.0f;
if (!RJWSettings.rape_beating)
{
if (xxx.is_bloodlust(pawn))
personality_factor *= 0.5f;
}
if (xxx.is_nympho(pawn))
personality_factor *= 0.5f;
else if (xxx.is_prude(pawn) || pawn.story.traits.HasTrait(TraitDefOf.BodyPurist))
personality_factor *= 2f;
if (xxx.is_rapist(pawn))
personality_factor *= 0.5f;
if (xxx.is_psychopath(pawn))
personality_factor *= 0.75f;
else if (xxx.is_kind(pawn))
personality_factor *= 5.0f;
float rapeCount = pawn.records.GetValue(xxx.CountOfRapedHumanlikes) +
pawn.records.GetValue(xxx.CountOfRapedAnimals) +
pawn.records.GetValue(xxx.CountOfRapedInsects) +
pawn.records.GetValue(xxx.CountOfRapedOthers);
// Pawns with few or no rapes are more reluctant to rape CPs.
if (rapeCount < 3.0f)
personality_factor *= 1.5f;
}
}
float fun_factor;
{
if ((pawn.needs.joy != null) && (xxx.is_rapist(pawn) || xxx.is_psychopath(pawn)))
fun_factor = Mathf.Clamp01(0.50f + pawn.needs.joy.CurLevel);
else
fun_factor = 1.00f;
}
float animal_factor = 1.0f;
if (xxx.is_animal(pawn))
{
var partBPR = Genital_Helper.get_genitalsBPR(pawn);
var parts = Genital_Helper.get_PartsHediffList(pawn, partBPR);
// Much slower for female animals.
animal_factor = (Genital_Helper.has_penis_fertile(pawn, parts) || Genital_Helper.has_penis_infertile(pawn, parts)) ? 2.5f : 6f;
}
//if (xxx.is_animal(pawn)) { Log.Message("Chance for " + pawn + " : " + base_mtb * desire_factor * personality_factor * fun_factor * animal_factor); }
return base_mtb * desire_factor * personality_factor * fun_factor * animal_factor;
}
public override ThinkResult TryIssueJobPackage(Pawn pawn, JobIssueParams jobParams)
{
try
{
return base.TryIssueJobPackage(pawn, jobParams);
}
catch (NullReferenceException)
{
return ThinkResult.NoJob; ;
}
}
}
}
|
jojo1541/rjw
|
1.1/Source/ThinkTreeNodes/ThinkNode_ChancePerHour_RapeCP.cs
|
C#
|
mit
| 2,962
|
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Called to determine if the non animal is eligible for a Bestiality job
/// </summary>
public class ThinkNode_ConditionalBestiality : ThinkNode_Conditional
{
protected override bool Satisfied(Pawn p)
{
//if (p.Faction != null && p.Faction.IsPlayer)
// ModLog.Message("ThinkNode_ConditionalBestiality " + xxx.get_pawnname(p) + " is animal: " + xxx.is_animal(p));
// No bestiality for animals, animal-on-animal is handled in Breed job.
if (xxx.is_animal(p))
return false;
// Bestiality off
if (!RJWSettings.bestiality_enabled)
return false;
// No free will while designated for rape.
if (!RJWSettings.designated_freewill)
if ((p.IsDesignatedComfort() || p.IsDesignatedBreeding()))
return false;
return true;
}
}
}
|
jojo1541/rjw
|
1.1/Source/ThinkTreeNodes/ThinkNode_ConditionalBestiality.cs
|
C#
|
mit
| 834
|
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Called to determine if the animal is eligible for a breed job
/// </summary>
public class ThinkNode_ConditionalCanBreed : ThinkNode_Conditional
{
protected override bool Satisfied(Pawn p)
{
//ModLog.Message("ThinkNode_ConditionalCanBreed " + p);
//Rimworld of Magic polymorphed humanlikes also get animal think node
//if (p.Faction != null && p.Faction.IsPlayer)
// ModLog.Message("ThinkNode_ConditionalCanBreed " + xxx.get_pawnname(p) + " is animal: " + xxx.is_animal(p));
// No Breed jobs for humanlikes, that's handled by bestiality.
if (!xxx.is_animal(p))
return false;
// Animal stuff disabled.
if (!RJWSettings.bestiality_enabled && !RJWSettings.animal_on_animal_enabled)
return false;
//return p.IsDesignatedBreedingAnimal() || RJWSettings.WildMode;
return p.IsDesignatedBreedingAnimal();
}
}
}
|
jojo1541/rjw
|
1.1/Source/ThinkTreeNodes/ThinkNode_ConditionalCanBreed.cs
|
C#
|
mit
| 919
|
using Verse;
using Verse.AI;
using RimWorld;
namespace rjw
{
public class ThinkNode_ConditionalCanRapeCP : ThinkNode_Conditional
{
protected override bool Satisfied(Pawn p)
{
//ModLog.Message("ThinkNode_ConditionalCanRapeCP " + pawn);
if (!RJWSettings.rape_enabled)
return false;
// Hostiles cannot use CP.
if (p.HostileTo(Faction.OfPlayer))
return false;
// Designated pawns are not allowed to rape other CP.
if (!RJWSettings.designated_freewill)
if ((p.IsDesignatedComfort() || p.IsDesignatedBreeding()))
return false;
// Animals cannot rape CP if the setting is disabled.
if (!(RJWSettings.bestiality_enabled && RJWSettings.animal_CP_rape) && xxx.is_animal(p) )
return false;
// colonists(humans) cannot rape CP if the setting is disabled.
if (!RJWSettings.colonist_CP_rape && p.IsColonist && xxx.is_human(p))
return false;
// Visitors(humans) cannot rape CP if the setting is disabled.
if (!RJWSettings.visitor_CP_rape && p.Faction?.IsPlayer == false && xxx.is_human(p))
return false;
// Visitors(animals/caravan) cannot rape CP if the setting is disabled.
if (!RJWSettings.visitor_CP_rape && p.Faction?.IsPlayer == false && p.Faction != Faction.OfInsects && xxx.is_animal(p))
return false;
// Wild animals, insects cannot rape CP.
if ((p.Faction == null || p.Faction == Faction.OfInsects) && xxx.is_animal(p))
return false;
return true;
}
}
}
|
jojo1541/rjw
|
1.1/Source/ThinkTreeNodes/ThinkNode_ConditionalCanRapeCP.cs
|
C#
|
mit
| 1,454
|
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Pawn frustrated
/// </summary>
public class ThinkNode_ConditionalFrustrated : ThinkNode_Conditional
{
protected override bool Satisfied (Pawn p)
{
return xxx.is_frustrated(p);
}
}
}
|
jojo1541/rjw
|
1.1/Source/ThinkTreeNodes/ThinkNode_ConditionalFrustrated.cs
|
C#
|
mit
| 263
|
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Pawn is horny
/// </summary>
public class ThinkNode_ConditionalHorny : ThinkNode_Conditional
{
protected override bool Satisfied(Pawn p)
{
return xxx.is_horny(p);
}
}
}
|
jojo1541/rjw
|
1.1/Source/ThinkTreeNodes/ThinkNode_ConditionalHorny.cs
|
C#
|
mit
| 250
|
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Pawn HornyOrFrustrated
/// </summary>
public class ThinkNode_ConditionalHornyOrFrustrated : ThinkNode_Conditional
{
protected override bool Satisfied (Pawn p)
{
return xxx.is_hornyorfrustrated(p);
}
}
}
|
jojo1541/rjw
|
1.1/Source/ThinkTreeNodes/ThinkNode_ConditionalHornyOrFrustrated.cs
|
C#
|
mit
| 284
|
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Called to determine if the animal can mate(vanilla reproductory sex) with animals.
/// </summary>
public class ThinkNode_ConditionalMate : ThinkNode_Conditional
{
protected override bool Satisfied(Pawn p)
{
//ModLog.Message("ThinkNode_ConditionalMate " + xxx.get_pawnname(p));
return (xxx.is_animal(p) && RJWSettings.animal_on_animal_enabled);
}
}
}
|
jojo1541/rjw
|
1.1/Source/ThinkTreeNodes/ThinkNode_ConditionalMate.cs
|
C#
|
mit
| 433
|
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Called to determine if the pawn can engage in necrophilia.
/// </summary>
public class ThinkNode_ConditionalNecro : ThinkNode_Conditional
{
protected override bool Satisfied(Pawn p)
{
//ModLog.Message("ThinkNode_ConditionalNecro " + p);
if (!RJWSettings.necrophilia_enabled)
return false;
// No necrophilia for animals. At least for now.
// This would be easy to enable, if we actually want to add it.
if (xxx.is_animal(p))
return false;
// No free will while designated for rape.
if (!RJWSettings.designated_freewill)
if ((p.IsDesignatedComfort() || p.IsDesignatedBreeding()))
return false;
return true;
}
}
}
|
jojo1541/rjw
|
1.1/Source/ThinkTreeNodes/ThinkNode_ConditionalNecro.cs
|
C#
|
mit
| 736
|
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Nymph nothing to do, seek sex-> join in bed
/// </summary>
public class ThinkNode_ConditionalNympho : ThinkNode_Conditional
{
protected override bool Satisfied(Pawn p)
{
//ModLog.Message("ThinkNode_ConditionalNympho " + p);
if (xxx.is_nympho(p))
if (p.Faction == null || !p.Faction.IsPlayer)
return false;
else
return true;
return false;
}
}
}
|
jojo1541/rjw
|
1.1/Source/ThinkTreeNodes/ThinkNode_ConditionalNympho.cs
|
C#
|
mit
| 451
|
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Rapist, chance to trigger random rape
/// </summary>
public class ThinkNode_ConditionalRapist : ThinkNode_Conditional
{
protected override bool Satisfied(Pawn p)
{
if (!RJWSettings.rape_enabled)
return false;
if (xxx.is_animal(p))
return false;
if (!xxx.is_rapist(p))
return false;
// No free will while designated for rape.
if (!RJWSettings.designated_freewill)
if ((p.IsDesignatedComfort() || p.IsDesignatedBreeding()))
return false;
if (!xxx.isSingleOrPartnerNotHere(p))
{
return false;
}
else
return true;
}
}
}
|
jojo1541/rjw
|
1.1/Source/ThinkTreeNodes/ThinkNode_ConditionalRapist.cs
|
C#
|
mit
| 654
|
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Called to determine if the pawn can engage in sex.
/// This should be used as the first conditional for sex-related thinktrees.
/// </summary>
public class ThinkNode_ConditionalSexChecks : ThinkNode_Conditional
{
protected override bool Satisfied(Pawn p)
{
//ModLog.Message("ThinkNode_ConditionalSexChecks " + xxx.get_pawnname(p));
//if (p.Faction != null && p.Faction.IsPlayer)
// ModLog.Message("ThinkNode_ConditionalSexChecks " + xxx.get_pawnname(p) + " is animal: " + xxx.is_animal(p));
// Downed, Drafted and Awake are checked in core ThinkNode_ConditionalCanDoConstantThinkTreeJobNow.
if (p.Map == null)
return false;
// Setting checks.
if (xxx.is_human(p) && p.ageTracker.AgeBiologicalYears < RJWSettings.sex_minimum_age)
return false;
else if (xxx.is_animal(p) && !RJWSettings.bestiality_enabled && !RJWSettings.animal_on_animal_enabled)
return false;
// No sex while starving or badly hurt.
return ((!p.needs?.food?.Starving) ?? true && xxx.is_healthy_enough(p));
}
}
}
|
jojo1541/rjw
|
1.1/Source/ThinkTreeNodes/ThinkNode_ConditionalSexChecks.cs
|
C#
|
mit
| 1,106
|
using RimWorld;
using Verse;
namespace rjw
{
public class ThoughtWorker_FeelingBroken : ThoughtWorker
{
public static int Clamp(int value, int min, int max)
{
return (value < min) ? min : (value > max) ? max : value;
}
protected override ThoughtState CurrentStateInternal(Pawn p)
{
var brokenstages = p.health.hediffSet.GetFirstHediffOfDef(xxx.feelingBroken);
if (brokenstages != null && brokenstages.CurStageIndex != 0)
{
if (xxx.is_masochist(p) && brokenstages.CurStageIndex >= 2)
{
return ThoughtState.ActiveAtStage(2); // begging for more
}
return ThoughtState.ActiveAtStage(Clamp(brokenstages.CurStageIndex - 1, 0, 1));
}
return ThoughtState.Inactive;
}
}
}
|
jojo1541/rjw
|
1.1/Source/Thoughts/ThoughtWorker_FeelingBroken.cs
|
C#
|
mit
| 721
|
using RimWorld;
using Verse;
namespace rjw
{
public class ThoughtWorker_NeedSex : ThoughtWorker
{
protected override ThoughtState CurrentStateInternal(Pawn p)
{
var sex_need = p.needs.TryGetNeed<Need_Sex>();
var p_age = p.ageTracker.AgeBiologicalYears;
if (sex_need != null && (p_age >= RJWSettings.sex_minimum_age || (!xxx.is_human(p) && p.ageTracker.CurLifeStage.reproductive)))
{
var lev = sex_need.CurLevel;
if (lev <= sex_need.thresh_frustrated())
return ThoughtState.ActiveAtStage(0);
else if (lev <= sex_need.thresh_horny())
return ThoughtState.ActiveAtStage(1);
else if (lev >= sex_need.thresh_ahegao())
return ThoughtState.ActiveAtStage(3);
else if (lev >= sex_need.thresh_satisfied())
return ThoughtState.ActiveAtStage(2);
else
return ThoughtState.Inactive;
}
else
return ThoughtState.Inactive;
}
}
}
|
jojo1541/rjw
|
1.1/Source/Thoughts/ThoughtWorker_NeedSex.cs
|
C#
|
mit
| 891
|
using RimWorld;
using Verse;
namespace rjw
{
//This thought system of RW is retarded AF. It needs separate thought handler for each hediff.
public abstract class ThoughtWorker_SexChange : ThoughtWorker
{
public virtual HediffDef hediff_served { get; }
protected override ThoughtState CurrentStateInternal(Pawn pawn)
{
//Log.Message(" "+this.GetType() + " is called for " + pawn +" and hediff" + hediff_served);
Hediff denial = pawn.health.hediffSet.GetFirstHediffOfDef(hediff_served);
//Log.Message("Hediff of the class is null " + (hediff_served == null));
if (denial != null && denial.CurStageIndex!=0)
{
//Log.Message("Current denial level is " + denial.CurStageIndex );
return ThoughtState.ActiveAtStage(denial.CurStageIndex-1);
}
return ThoughtState.Inactive;
}
}
public class ThoughtWorker_MtT : ThoughtWorker_SexChange
{
public override HediffDef hediff_served { get { return GenderHelper.m2t; } }
}
public class ThoughtWorker_MtF:ThoughtWorker_SexChange
{
public override HediffDef hediff_served { get { return GenderHelper.m2f; } }
}
public class ThoughtWorker_MtH : ThoughtWorker_SexChange
{
public override HediffDef hediff_served { get { return GenderHelper.m2h; } }
}
public class ThoughtWorker_FtT : ThoughtWorker_SexChange
{
public override HediffDef hediff_served { get { return GenderHelper.f2t; } }
}
public class ThoughtWorker_FtM : ThoughtWorker_SexChange
{
public override HediffDef hediff_served { get { return GenderHelper.f2m; } }
}
public class ThoughtWorker_FtH : ThoughtWorker_SexChange
{
public override HediffDef hediff_served { get { return GenderHelper.f2h; } }
}
public class ThoughtWorker_HtT : ThoughtWorker_SexChange
{
public override HediffDef hediff_served { get { return GenderHelper.h2t; } }
}
public class ThoughtWorker_HtM : ThoughtWorker_SexChange
{
public override HediffDef hediff_served { get { return GenderHelper.h2m; } }
}
public class ThoughtWorker_HtF : ThoughtWorker_SexChange
{
public override HediffDef hediff_served { get { return GenderHelper.h2f; } }
}
public class ThoughtWorker_TtH : ThoughtWorker_SexChange
{
public override HediffDef hediff_served { get { return GenderHelper.t2h; } }
}
public class ThoughtWorker_TtM : ThoughtWorker_SexChange
{
public override HediffDef hediff_served { get { return GenderHelper.t2m; } }
}
public class ThoughtWorker_TtF : ThoughtWorker_SexChange
{
public override HediffDef hediff_served { get { return GenderHelper.t2f; } }
}
}
|
jojo1541/rjw
|
1.1/Source/Thoughts/ThoughtWorker_SexChange.cs
|
C#
|
mit
| 2,531
|
using Verse;
using Verse.AI.Group;
namespace rjw
{
public class Trigger_SexSatisfy : TriggerFilter
{
private const int CheckInterval = 120;
private const int TickTimeout = 900;
private int currentTick = 0;
public float targetValue = 0.3f;
public Trigger_SexSatisfy(float t)
{
this.targetValue = t;
currentTick = 0;
}
public override bool AllowActivation(Lord lord, TriggerSignal signal)
{
currentTick++;
if (signal.type == TriggerSignalType.Tick && Find.TickManager.TicksGame % CheckInterval == 0)
{
float? avgValue = null;
foreach (var pawn in lord.ownedPawns)
{
/*foreach(Pawn p in lord.Map.mapPawns.PawnsInFaction(Faction.OfPlayer))
{
}*/
Need_Sex n = pawn.needs.TryGetNeed<Need_Sex>();
//if (n != null && pawn.gender == Gender.Male && !pawn.Downed)
if(xxx.can_rape(pawn) && xxx.is_healthy_enough(pawn) && xxx.IsTargetPawnOkay(pawn) && Find.TickManager.TicksGame > pawn.mindState.canLovinTick)
{
avgValue = (avgValue == null) ? n.CurLevel : (avgValue + n.CurLevel) / 2f;
}
}
//--Log.Message("[ABF]Trigger_SexSatisfy::ActivateOn Checked value :" + avgValue + "/" + targetValue);
return avgValue == null || avgValue >= targetValue;
}
return currentTick >= TickTimeout;
}
}
}
|
jojo1541/rjw
|
1.1/Source/Triggers/Trigger_SexSatisfy.cs
|
C#
|
mit
| 1,295
|
using RimWorld;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Assigns a pawn to rape a comfort prisoner
/// </summary>
public class WorkGiver_BestialityF : WorkGiver_RJW_Sexchecks
{
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
if (!RJWSettings.rape_enabled) return false;
Pawn target = t as Pawn;
if (!RJWSettings.WildMode)
{
if (xxx.is_kind(pawn))
{
JobFailReason.Is("refuses to rape");
return false;
}
//satisfied pawns
//horny non rapists
if ((xxx.need_some_sex(pawn) <= 1f)
|| (xxx.need_some_sex(pawn) <= 2f && !(xxx.is_rapist(pawn) || xxx.is_psychopath(pawn) || xxx.is_nympho(pawn))))
{
JobFailReason.Is("not horny enough");
return false;
}
if (!target.IsDesignatedComfort())
{
//JobFailReason.Is("not designated as CP", null);
return false;
}
if (!xxx.is_healthy_enough(target)
|| !xxx.is_not_dying(target) && (xxx.is_bloodlust(pawn) || xxx.is_psychopath(pawn) || xxx.is_rapist(pawn) || xxx.has_quirk(pawn, "Somnophile")))
{
//--Log.Message("[RJW]WorkGiver_RapeCP::HasJobOnThing called0 - target isn't healthy enough or is in a forbidden position.");
JobFailReason.Is("target not healthy enough");
return false;
}
if (pawn.relations.OpinionOf(target) > 50 && !xxx.is_rapist(pawn) && !xxx.is_psychopath(pawn) && !xxx.is_masochist(target))
{
JobFailReason.Is("refuses to rape a friend");
return false;
}
if (!xxx.can_rape(pawn))
{
//--Log.Message("[RJW]WorkGiver_RapeCP::HasJobOnThing called1 - pawn don't need sex or is not healthy, or cannot rape");
JobFailReason.Is("cannot rape target (vulnerability too low, or age mismatch)");
return false;
}
if (!xxx.isSingleOrPartnerNotHere(pawn) && !xxx.is_lecher(pawn) && !xxx.is_psychopath(pawn) && !xxx.is_nympho(pawn))
if (!LovePartnerRelationUtility.LovePartnerRelationExists(pawn, target))
{
//--Log.Message("[RJW]WorkGiver_RapeCP::HasJobOnThing called2 - pawn is not single or has partner around");
JobFailReason.Is("cannot rape while in stable relationship");
return false;
}
}
if (!pawn.CanReserve(target, xxx.max_rapists_per_prisoner, 0))
return false;
//Log.Message("[RJW]" + this.GetType().ToString() + " extended checks: can start sex");
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
//--Log.Message("[RJW]WorkGiver_RapeCP::JobOnThing(" + xxx.get_pawnname(pawn) + "," + t.ToStringSafe() + ") is called.");
return new Job(xxx.comfort_prisoner_rapin, t);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_BestialityF.cs
|
C#
|
mit
| 2,666
|
using RimWorld;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Assigns a pawn to breed animal(passive)
/// </summary>
public class WorkGiver_BestialityForFemale : WorkGiver_Sexchecks
{
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
//ModLog.Message("" + this.GetType().ToString() + ":: base checks: pass");
if (!RJWSettings.bestiality_enabled) return false;
Pawn target = t as Pawn;
if (!WorkGiverChecks(pawn, t, forced))
return false;
if (!xxx.can_be_fucked(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("pawn cant be fucked");
return false;
}
if (!(pawn.IsDesignatedHero() || RJWSettings.override_control))
if (!RJWSettings.WildMode)
{
if (!xxx.is_zoophile(pawn) && !xxx.is_frustrated(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("not willing to have sex with animals");
return false;
}
if (!xxx.is_hornyorfrustrated(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("not horny enough");
return false;
}
if (!xxx.is_healthy_enough(target))
{
if (RJWSettings.DevMode) JobFailReason.Is("target not healthy enough");
return false;
}
//ModLog.Message("WorkGiver_BestialityForFemale::" + SexAppraiser.would_fuck_animal(pawn, target));
if (SexAppraiser.would_fuck_animal(pawn, target) < 0.1f)
{
return false;
}
//add some more fancy conditions from JobGiver_Bestiality?
}
//ModLog.Message("" + this.GetType().ToString() + ":: extended checks: can start sex");
return true;
}
public override bool WorkGiverChecks(Pawn pawn, Thing t, bool forced = false)
{
Pawn target = t as Pawn;
if (!xxx.is_animal(target))
{
return false;
}
Building_Bed bed = pawn.ownership.OwnedBed;
if (bed == null)
{
if (RJWSettings.DevMode) JobFailReason.Is("pawn has no bed");
return false;
}
if (!target.CanReach(bed, PathEndMode.OnCell, Danger.Some) || target.Downed)
{
if (RJWSettings.DevMode) JobFailReason.Is("target cant reach bed");
return false;
}
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
Building_Bed bed = pawn.ownership.OwnedBed;
return JobMaker.MakeJob(xxx.bestialityForFemale, t, bed);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_BestialityForFemale.cs
|
C#
|
mit
| 2,338
|
using RimWorld;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Assigns a pawn to breed animal(active)
/// </summary>
public class WorkGiver_BestialityForMale : WorkGiver_Sexchecks
{
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
//ModLog.Message("" + this.GetType().ToString() + " base checks: pass");
if (!RJWSettings.bestiality_enabled) return false;
Pawn target = t as Pawn;
if (!WorkGiverChecks(pawn, t, forced))
return false;
if (!xxx.can_be_fucked(target))
{
if (RJWSettings.DevMode) JobFailReason.Is("target cant be fucked");
return false;
}
if (!(pawn.IsDesignatedHero() || RJWSettings.override_control))
if (!RJWSettings.WildMode)
{
if (!xxx.is_zoophile(pawn) && !xxx.is_frustrated(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("not willing to have sex with animals");
return false;
}
if (!xxx.is_hornyorfrustrated(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("not horny enough");
return false;
}
if (!xxx.is_healthy_enough(target)
|| !xxx.is_not_dying(target) && (xxx.is_bloodlust(pawn) || xxx.is_psychopath(pawn) || xxx.has_quirk(pawn, "Somnophile")))
{
if (RJWSettings.DevMode) JobFailReason.Is("target not healthy enough");
return false;
}
//ModLog.Message("WorkGiver_BestialityForMale::" + SexAppraiser.would_fuck_animal(pawn, target));
if (SexAppraiser.would_fuck_animal(pawn, target) < 0.1f)
{
return false;
}
//add some more fancy conditions from JobGiver_Bestiality?
}
//ModLog.Message("" + this.GetType().ToString() + ":: extended checks: can start sex");
return true;
}
public override bool WorkGiverChecks(Pawn pawn, Thing t, bool forced = false)
{
Pawn target = t as Pawn;
if (!xxx.is_animal(target))
{
return false;
}
if (!xxx.can_fuck(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("cant fuck");
return false;
}
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
return JobMaker.MakeJob(xxx.bestiality, t);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_BestialityForMale.cs
|
C#
|
mit
| 2,176
|
using RimWorld;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Assigns a pawn to rape a comfort prisoner
/// </summary>
public class WorkGiver_BestialityM : WorkGiver_RJW_Sexchecks
{
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
if (!RJWSettings.rape_enabled) return false;
Pawn target = t as Pawn;
if (!RJWSettings.WildMode)
{
if (xxx.is_kind(pawn))
{
JobFailReason.Is("refuses to rape");
return false;
}
//satisfied pawns
//horny non rapists
if ((xxx.need_some_sex(pawn) <= 1f)
|| (xxx.need_some_sex(pawn) <= 2f && !(xxx.is_rapist(pawn) || xxx.is_psychopath(pawn) || xxx.is_nympho(pawn))))
{
JobFailReason.Is("not horny enough");
return false;
}
if (!target.IsDesignatedComfort())
{
//JobFailReason.Is("not designated as CP", null);
return false;
}
if (!xxx.is_healthy_enough(target)
|| !xxx.is_not_dying(target) && (xxx.is_bloodlust(pawn) || xxx.is_psychopath(pawn) || xxx.is_rapist(pawn) || xxx.has_quirk(pawn, "Somnophile")))
{
//--Log.Message("[RJW]WorkGiver_RapeCP::HasJobOnThing called0 - target isn't healthy enough or is in a forbidden position.");
JobFailReason.Is("target not healthy enough");
return false;
}
if (pawn.relations.OpinionOf(target) > 50 && !xxx.is_rapist(pawn) && !xxx.is_psychopath(pawn) && !xxx.is_masochist(target))
{
JobFailReason.Is("refuses to rape a friend");
return false;
}
if (!xxx.can_rape(pawn))
{
//--Log.Message("[RJW]WorkGiver_RapeCP::HasJobOnThing called1 - pawn don't need sex or is not healthy, or cannot rape");
JobFailReason.Is("cannot rape target (vulnerability too low, or age mismatch)");
return false;
}
if (!xxx.isSingleOrPartnerNotHere(pawn) && !xxx.is_lecher(pawn) && !xxx.is_psychopath(pawn) && !xxx.is_nympho(pawn))
if (!LovePartnerRelationUtility.LovePartnerRelationExists(pawn, target))
{
//--Log.Message("[RJW]WorkGiver_RapeCP::HasJobOnThing called2 - pawn is not single or has partner around");
JobFailReason.Is("cannot rape while in stable relationship");
return false;
}
}
if (!pawn.CanReserve(target, xxx.max_rapists_per_prisoner, 0))
return false;
//Log.Message("[RJW]" + this.GetType().ToString() + " extended checks: can start sex");
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
//--Log.Message("[RJW]WorkGiver_RapeCP::JobOnThing(" + xxx.get_pawnname(pawn) + "," + t.ToStringSafe() + ") is called.");
return new Job(xxx.comfort_prisoner_rapin, t);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_BestialityM.cs
|
C#
|
mit
| 2,666
|
using RimWorld;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Assigns a pawn to cleanup/collect sex fluids
/// </summary>
//TODO: add sex fluid collection/cleaning
public class WorkGiver_CleanSexStuff : WorkGiver_Sexchecks
{
public override ThingRequest PotentialWorkThingRequest => ThingRequest.ForGroup(ThingRequestGroup.filth);
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
return false;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
return null;
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_CleanSexStuff.cs
|
C#
|
mit
| 561
|
using RimWorld;
using Verse;
using Verse.AI;
using System.Linq;
namespace rjw
{
/// <summary>
/// Assigns a pawn to fap in bed
/// </summary>
public class WorkGiver_Masturbate_Bed : WorkGiver_Sexchecks
{
public override ThingRequest PotentialWorkThingRequest => ThingRequest.ForGroup(ThingRequestGroup.BuildingArtificial);
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
if (pawn.Position == t.Position)
{
//use quickfap
return false;
}
//ModLog.Message("" + this.GetType().ToString() + " base checks: pass");
Building_Bed target = t as Building_Bed;
if (!(target is Building_Bed))
{
if (RJWSettings.DevMode) JobFailReason.Is("not a bed");
return false;
}
if (!pawn.CanReserve(target))
{
//if (RJWSettings.DevMode) JobFailReason.Is("not a bed");
return false;
}
if (!(pawn.IsDesignatedHero() || RJWSettings.override_control))
if (!RJWSettings.WildMode)
{
if (!target.OwnersForReading.Contains(pawn) && !xxx.is_psychopath(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("not my bed");
return false;
}
if (!xxx.is_nympho(pawn))
if (!xxx.is_hornyorfrustrated(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("not horny enough");
return false;
}
if (target.CurOccupants.Count() != 0)
{
if (target.CurOccupants.Count() == 1 && !target.CurOccupants.Contains(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("bed not empty");
return false;
}
if (target.CurOccupants.Count() > 1)
{
if (RJWSettings.DevMode) JobFailReason.Is("bed not empty");
return false;
}
}
//TODO: more exhibitionsts checks?
bool canbeseen = false;
foreach (Pawn bystander in pawn.Map.mapPawns.AllPawnsSpawned.Where(x => xxx.is_human(x) && x != pawn))
{
// dont see through walls, dont see whole map, only 15 cells around
if (bystander.CanSee(target) && bystander.Position.DistanceTo(target.Position) < 15)
{
//if (!LovePartnerRelationUtility.LovePartnerRelationExists(pawn, bystander))
canbeseen = true;
}
}
if (!xxx.has_quirk(pawn, "Exhibitionist") && canbeseen)
{
if (RJWSettings.DevMode) JobFailReason.Is("can be seen");
return false;
}
if (xxx.has_quirk(pawn, "Exhibitionist") && !canbeseen)
{
if (RJWSettings.DevMode) JobFailReason.Is("can not be seen");
return false;
}
}
//ModLog.Message("" + this.GetType().ToString() + " extended checks: can start sex");
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
return JobMaker.MakeJob(xxx.Masturbate, null, t, t.Position);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_Masturbate_Bed.cs
|
C#
|
mit
| 2,784
|
using RimWorld;
using Verse;
using Verse.AI;
using System.Linq;
namespace rjw
{
/// <summary>
/// Assigns a pawn to fap in chair
/// </summary>
public class WorkGiver_Masturbate_Chair : WorkGiver_Sexchecks
{
public override ThingRequest PotentialWorkThingRequest => ThingRequest.ForGroup(ThingRequestGroup.BuildingArtificial);
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
if (pawn.Position == t.Position)
{
//use quickfap
return false;
}
//ModLog.Message("" + this.GetType().ToString() + " base checks: pass");
Building target = t as Building;
if (!(target is Building))
{
if (RJWSettings.DevMode) JobFailReason.Is("not a building");
return false;
}
if (!(target.def.building.isSittable))
{
if (RJWSettings.DevMode) JobFailReason.Is("not a sittable building");
return false;
}
if (!pawn.CanReserve(target))
{
//if (RJWSettings.DevMode) JobFailReason.Is("not a bed");
return false;
}
if (!(pawn.IsDesignatedHero() || RJWSettings.override_control))
if (!RJWSettings.WildMode)
{
if (!xxx.is_nympho(pawn))
if (!xxx.is_hornyorfrustrated(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("not horny enough");
return false;
}
//TODO: more exhibitionsts checks?
bool canbeseen = false;
foreach (Pawn bystander in pawn.Map.mapPawns.AllPawnsSpawned.Where(x => xxx.is_human(x) && x != pawn))
{
// dont see through walls, dont see whole map, only 15 cells around
if (bystander.CanSee(target) && bystander.Position.DistanceTo(target.Position) < 15)
{
//if (!LovePartnerRelationUtility.LovePartnerRelationExists(pawn, bystander))
canbeseen = true;
}
}
if (!xxx.has_quirk(pawn, "Exhibitionist") && canbeseen)
{
if (RJWSettings.DevMode) JobFailReason.Is("can be seen");
return false;
}
if (xxx.has_quirk(pawn, "Exhibitionist") && !canbeseen)
{
if (RJWSettings.DevMode) JobFailReason.Is("can not be seen");
return false;
}
}
//ModLog.Message("" + this.GetType().ToString() + " extended checks: can start sex");
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
return JobMaker.MakeJob(xxx.Masturbate, null, t, t.Position);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_Masturbate_Chair.cs
|
C#
|
mit
| 2,359
|
using RimWorld;
using Verse;
using Verse.AI;
using System.Linq;
namespace rjw
{
/// <summary>
/// Assigns a pawn to fap
/// </summary>
public class WorkGiver_Masturbate : WorkGiver_Sexchecks
{
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
//ModLog.Message("" + this.GetType().ToString() + " base checks: pass");
Pawn target = t as Pawn;
if (target != pawn)
{
return false;
}
if (!pawn.CanReserve(target, xxx.max_rapists_per_prisoner, 0))
return false;
if (!(pawn.IsDesignatedHero() || RJWSettings.override_control))
if (!RJWSettings.WildMode)
{
if (!xxx.is_nympho(pawn))
if (!xxx.is_hornyorfrustrated(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("not horny enough");
return false;
}
//TODO: more exhibitionsts checks?
bool canbeseen = false;
foreach (Pawn bystander in pawn.Map.mapPawns.AllPawnsSpawned.Where(x => xxx.is_human(x) && x != pawn))
{
// dont see through walls, dont see whole map, only 15 cells around
if (pawn.CanSee(bystander) && pawn.Position.DistanceTo(bystander.Position) < 15)
{
//if (!LovePartnerRelationUtility.LovePartnerRelationExists(pawn, bystander))
canbeseen = true;
}
}
if (!xxx.has_quirk(pawn, "Exhibitionist") && canbeseen)
{
if (RJWSettings.DevMode) JobFailReason.Is("can be seen");
return false;
}
if (xxx.has_quirk(pawn, "Exhibitionist") && !canbeseen)
{
if (RJWSettings.DevMode) JobFailReason.Is("can not be seen");
return false;
}
}
//experimental change textures of bed to whore bed
//ModLog.Message(" bed " + t.GetType().ToString() + " path " + t.Graphic.data.texPath);
//t.Graphic.data.texPath = "Things/Building/Furniture/Bed/DoubleBedWhore";
//t.Graphic.path = "Things/Building/Furniture/Bed/DoubleBedWhore";
//t.DefaultGraphic.data.texPath = "Things/Building/Furniture/Bed/DoubleBedWhore";
//t.DefaultGraphic.path = "Things/Building/Furniture/Bed/DoubleBedWhore";
//ModLog.Message(" bed " + t.GetType().ToString() + " texPath " + t.Graphic.data.texPath);
//ModLog.Message(" bed " + t.GetType().ToString() + " drawSize " + t.Graphic.data.drawSize);
//t.Draw();
//t.ExposeData();
//Scribe_Values.Look(ref t.Graphic.data.texPath, t.Graphic.data.texPath, "Things/Building/Furniture/Bed/DoubleBedWhore", true);
//ModLog.Message("" + this.GetType().ToString() + " extended checks: can start sex");
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
return JobMaker.MakeJob(xxx.Masturbate, null, null, t.Position);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_Masturbate_Quick.cs
|
C#
|
mit
| 2,688
|
using RimWorld;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Assigns a pawn to rape
/// </summary>
public class WorkGiver_Quickie : WorkGiver_Sexchecks
{
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
Pawn target = t as Pawn;
if (target == pawn)
{
//JobFailReason.Is("no self rape", null);
return false;
}
if (!WorkGiverChecks(pawn, t, forced))
return false;
if (!xxx.is_human(target))
{
return false;
}
if(target.GetPosture() == PawnPosture.LayingInBed)
{
return false;
}
if (!pawn.CanReserve(target, xxx.max_rapists_per_prisoner, 0))
return false;
if (!(pawn.IsDesignatedHero() || RJWSettings.override_control))
return false;
//ModLog.Message("" + this.GetType().ToString() + " extended checks: can start sex");
return true;
}
public override bool WorkGiverChecks(Pawn pawn, Thing t, bool forced = false)
{
Pawn target = t as Pawn;
if (pawn.HostileTo(target))
{
return false;
}
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
return JobMaker.MakeJob(xxx.quick_sex, t as Pawn);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_Quickie.cs
|
C#
|
mit
| 1,197
|
using RimWorld;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Assigns a pawn to rape
/// </summary>
public class WorkGiver_Rape : WorkGiver_Sexchecks
{
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
if (RJWSettings.DebugRape) ModLog.Message("" + this.GetType().ToString() + " base checks: pass");
if (!RJWSettings.rape_enabled) return false;
Pawn target = t as Pawn;
if (target == pawn)
{
//JobFailReason.Is("no self rape", null);
return false;
}
if (!WorkGiverChecks(pawn, t, forced))
return false;
if (!xxx.is_human(target))
{
return false;
}
if (!pawn.CanReserve(target, xxx.max_rapists_per_prisoner, 0))
return false;
if (!(pawn.IsDesignatedHero() || RJWSettings.override_control))
if (!RJWSettings.WildMode)
{
if (xxx.is_kind(pawn) || xxx.is_masochist(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("refuses to rape");
return false;
}
if (pawn.relations.OpinionOf(target) > 50 && !xxx.is_rapist(pawn) && !xxx.is_psychopath(pawn) && !xxx.is_masochist(target))
{
if (RJWSettings.DevMode) JobFailReason.Is("refuses to rape a friend");
return false;
}
if (!xxx.can_get_raped(target))
{
if (RJWSettings.DevMode) JobFailReason.Is("cannot rape target");
return false;
}
//fail for:
//satisfied pawns
//horny non rapists
if ((xxx.need_some_sex(pawn) <= 1f)
|| (xxx.need_some_sex(pawn) <= 2f && !(xxx.is_rapist(pawn) || xxx.is_psychopath(pawn) || xxx.is_nympho(pawn))))
{
if (RJWSettings.DevMode) JobFailReason.Is("not horny enough");
return false;
}
if (!xxx.can_rape(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("cannot rape");
return false;
}
if (!xxx.is_healthy_enough(target)
|| !xxx.is_not_dying(target) && (xxx.is_bloodlust(pawn) || xxx.is_psychopath(pawn) || xxx.is_rapist(pawn) || xxx.has_quirk(pawn, "Somnophile")))
{
if (RJWSettings.DevMode) JobFailReason.Is("target not healthy enough");
return false;
}
if (!xxx.is_lecher(pawn) && !xxx.is_psychopath(pawn) && !xxx.is_nympho(pawn))
if (!xxx.isSingleOrPartnerNotHere(pawn))
if (!LovePartnerRelationUtility.LovePartnerRelationExists(pawn, target))
{
if (RJWSettings.DevMode) JobFailReason.Is("cannot rape while partner around");
return false;
}
//ModLog.Message("WorkGiver_RapeCP::" + SexAppraiser.would_fuck(pawn, target));
if (SexAppraiser.would_fuck(pawn, target) < 0.1f)
{
return false;
}
}
//ModLog.Message("" + this.GetType().ToString() + " extended checks: can start sex");
return true;
}
public override bool WorkGiverChecks(Pawn pawn, Thing t, bool forced = false)
{
Pawn target = t as Pawn;
if (pawn.HostileTo(target) || target.IsDesignatedComfort())
{
return false;
}
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
return JobMaker.MakeJob(xxx.RapeRandom, t);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_Rape.cs
|
C#
|
mit
| 3,120
|
using RimWorld;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Assigns a pawn to rape a comfort prisoner
/// </summary>
public class WorkGiver_RapeCP : WorkGiver_Rape
{
public override bool WorkGiverChecks(Pawn pawn, Thing t, bool forced = false)
{
Pawn target = t as Pawn;
if (!target.IsDesignatedComfort())
{
if (RJWSettings.DevMode) JobFailReason.Is("not designated for comfort", null);
return false;
}
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
return JobMaker.MakeJob(xxx.RapeCP, t);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_RapeCP.cs
|
C#
|
mit
| 603
|
using RimWorld;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Assigns a pawn to rape enemy
/// </summary>
public class WorkGiver_RapeEnemy : WorkGiver_Rape
{
public override bool WorkGiverChecks(Pawn pawn, Thing t, bool forced = false)
{
Pawn target = t as Pawn;
if (!pawn.HostileTo(target))
{
if (RJWSettings.DevMode) JobFailReason.Is("not hostile", null);
return false;
}
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
return JobMaker.MakeJob(xxx.RapeEnemy, t);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_RapeEnemy.cs
|
C#
|
mit
| 575
|
using RimWorld;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Assigns a pawn to have sex with
/// </summary>
public class WorkGiver_Sex : WorkGiver_Sexchecks
{
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
//ModLog.Message("" + this.GetType().ToString() + " base checks: pass");
Pawn target = t as Pawn;
if (target == pawn)
{
//JobFailReason.Is("no self sex", null);
return false;
}
if (!WorkGiverChecks(pawn, t, forced))
return false;
if (!xxx.is_human(target))
{
return false;
}
if (!pawn.CanReserve(target, xxx.max_rapists_per_prisoner, 0))
return false;
if (!(pawn.IsDesignatedHero() || RJWSettings.override_control))
if (!RJWSettings.WildMode)
{
//check initiator
//fail for:
//satisfied non nymph pawns
if (xxx.need_some_sex(pawn) <= 1f && !xxx.is_nympho(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("not horny enough");
return false;
}
if (!xxx.IsTargetPawnOkay(target))
{
if (RJWSettings.DevMode) JobFailReason.Is("target not healthy enough");
return false;
}
if (!xxx.is_lecher(pawn) && !xxx.is_psychopath(pawn) && !xxx.is_nympho(pawn))
if (!xxx.isSingleOrPartnerNotHere(pawn))
if (!LovePartnerRelationUtility.LovePartnerRelationExists(pawn, target))
{
if (RJWSettings.DevMode) JobFailReason.Is("cannot have sex while partner around");
return false;
}
float relations = 0;
float attraction = 0;
if (!xxx.is_animal(target))
{
relations = pawn.relations.OpinionOf(target);
if (relations < RJWHookupSettings.MinimumRelationshipToHookup)
{
if (!(relations > 0 && xxx.is_nympho(pawn)))
{
if (RJWSettings.DevMode) JobFailReason.Is($"i dont like them:({relations})");
return false;
}
}
attraction = pawn.relations.SecondaryRomanceChanceFactor(target);
if (attraction < RJWHookupSettings.MinimumAttractivenessToHookup)
{
if (!(attraction > 0 && xxx.is_nympho(pawn)))
{
if (RJWSettings.DevMode) JobFailReason.Is($"i dont find them attractive:({attraction})");
return false;
}
}
}
//ModLog.Message("WorkGiver_Sex::" + SexAppraiser.would_fuck(pawn, target));
if (SexAppraiser.would_fuck(pawn, target) < 0.1f)
{
return false;
}
if (!xxx.is_animal(target))
{
//check partner
if (xxx.need_some_sex(target) <= 1f && !xxx.is_nympho(target))
{
if (RJWSettings.DevMode) JobFailReason.Is("partner not horny enough");
return false;
}
if (!xxx.is_lecher(target) && !xxx.is_psychopath(target) && !xxx.is_nympho(target))
if (!xxx.isSingleOrPartnerNotHere(target))
if (!LovePartnerRelationUtility.LovePartnerRelationExists(pawn, target))
{
if (RJWSettings.DevMode) JobFailReason.Is("partner cannot have sex while their partner around");
return false;
}
relations = target.relations.OpinionOf(pawn);
if (relations <= RJWHookupSettings.MinimumRelationshipToHookup)
{
if (!(relations > 0 && xxx.is_nympho(target)))
{
if (RJWSettings.DevMode) JobFailReason.Is($"dont like me:({relations})");
return false;
}
}
attraction = target.relations.SecondaryRomanceChanceFactor(pawn);
if (attraction <= RJWHookupSettings.MinimumAttractivenessToHookup)
{
if (!(attraction > 0 && xxx.is_nympho(target)))
{
if (RJWSettings.DevMode) JobFailReason.Is($"doesnt find me attractive:({attraction})");
return false;
}
}
}
//ModLog.Message("WorkGiver_Sex::" + SexAppraiser.would_fuck(target, pawn));
if (SexAppraiser.would_fuck(target, pawn) < 0.1f)
{
return false;
}
}
//ModLog.Message("" + this.GetType().ToString() + " extended checks: can start sex");
return true;
}
public override bool WorkGiverChecks(Pawn pawn, Thing t, bool forced = false)
{
Pawn target = t as Pawn;
if (pawn.HostileTo(target) || target.IsDesignatedComfort())
{
return false;
}
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
//TODO:: fix bed stealing during join other pawn
//Building_Bed bed = pawn.ownership.OwnedBed;
//if (bed == null)
// bed = (t as Pawn).ownership.OwnedBed;
Building_Bed bed = (t as Pawn).CurrentBed();
if (bed == null)
return null;
//if (pawn.CurrentBed() != (t as Pawn).CurrentBed())
// return null;
return JobMaker.MakeJob(xxx.casual_sex, t as Pawn, bed);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_Sex.cs
|
C#
|
mit
| 4,739
|
using RimWorld;
using Verse;
using Verse.AI;
using Multiplayer.API;
namespace rjw
{
/// <summary>
/// Allow pawn to have sex
/// dunno if this should be used to allow manual sex start or limit it behind sort of "hero" designator for RP purposes, so player can only control 1 pawn directly?
/// </summary>
public class WorkGiver_Sexchecks : WorkGiver_Scanner
{
public override int MaxRegionsToScanBeforeGlobalSearch => 4;
public override PathEndMode PathEndMode => PathEndMode.OnCell;
public override ThingRequest PotentialWorkThingRequest => ThingRequest.ForGroup(ThingRequestGroup.Pawn);
public override bool HasJobOnThing(Pawn pawn, Thing t, bool forced = false)
{
if (!forced)
//if (!(forced || RJWSettings.WildMode))
{
//ModLog.Message("WorkGiver_RJW_Sexchecks::not player interaction, exit:" + forced);
return false;
}
var isHero = RJWSettings.RPG_hero_control && pawn.IsDesignatedHero();
if (!(RJWSettings.override_control || isHero))
{
//ModLog.Message("WorkGiver_RJW_Sexchecks::direct_control disabled or not hero, exit");
return false;
}
//!
if (!isHero)
{
if (!RJWSettings.override_control || MP.IsInMultiplayer)
{
//ModLog.Message("WorkGiver_RJW_Sexchecks::direct_control disabled or is in MP , exit");
return false;
}
}
else if (!pawn.IsHeroOwner())
{
//ModLog.Message("WorkGiver_RJW_Sexchecks::not hero owner, exit");
return false;
}
Pawn target = t as Pawn;
if (t is Corpse)
{
Corpse corpse = t as Corpse;
target = corpse.InnerPawn;
//ModLog.Message("WorkGiver_RJW_Sexchecks::Pawn(" + xxx.get_pawnname(pawn) + "), Target corpse(" + xxx.get_pawnname(target) + ")");
}
else
{
//ModLog.Message("WorkGiver_RJW_Sexchecks::Pawn(" + xxx.get_pawnname(pawn) + "), Target pawn(" + xxx.get_pawnname(target) + ")");
}
//Log.Message("1");
if (t == null || t.Map == null)
{
return false;
}
//Log.Message("2");
if (!(xxx.can_fuck(pawn) || xxx.can_be_fucked(pawn)))
{
//ModLog.Message("WorkGiver_RJW_Sexchecks::JobOnThing(" + xxx.get_pawnname(pawn) + ") is cannot fuck or be fucked.");
return false;
}
//Log.Message("3");
if (t is Pawn)
if (!(xxx.can_fuck(target) || xxx.can_be_fucked(target)))
{
//ModLog.Message("WorkGiver_RJW_Sexchecks::JobOnThing(" + xxx.get_pawnname(target) + ") is cannot fuck or be fucked.");
return false;
}
//Log.Message("4");
if (!RJWSettings.bestiality_enabled && xxx.is_animal(target))
{
//if (RJWSettings.DevMode) JobFailReason.Is("bestiality disabled");
return false;
}
//investigate AoA, someday
//move this?
//if (xxx.is_animal(pawn) && xxx.is_animal(target) && !RJWSettings.animal_on_animal_enabled)
//{
// return false;
//}
if (!xxx.is_human(pawn) && !(xxx.RoMIsActive && pawn.health.hediffSet.HasHediff(xxx.TM_ShapeshiftHD)))
{
return false;
}
//Log.Message("5");
if (!pawn.CanReach(t, PathEndMode, Danger.Some))
{
if (RJWSettings.DevMode) JobFailReason.Is(
pawn.CanReach(t, PathEndMode, Danger.Deadly)
? "unable to reach target safely" : "target unreachable");
return false;
}
//Log.Message("6");
if (t.IsForbidden(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("target is outside of allowed area");
return false;
}
//Log.Message("7");
if (!pawn.IsDesignatedHero())
{
if (!RJWSettings.WildMode)
{
if (pawn.IsDesignatedComfort() || pawn.IsDesignatedBreeding())
{
if (RJWSettings.DevMode) JobFailReason.Is("designated pawns cannot initiate sex");
return false;
}
if (!xxx.is_healthy_enough(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("not healthy enough for sex");
return false;
}
if (xxx.is_asexual(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("refuses to have sex");
return false;
}
}
}
else
{
if (!pawn.IsHeroOwner())
{
//ModLog.Message("WorkGiver_Sexchecks::player interaction for not owned hero, exit");
return false;
}
}
if (!MoreChecks(pawn, t, forced))
return false;
return true;
}
public virtual bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
return false;
}
public virtual bool WorkGiverChecks(Pawn pawn, Thing t, bool forced = false)
{
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
return null;
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_Sexchecks.cs
|
C#
|
mit
| 4,512
|
using RimWorld;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Try to solicit pawn to have sex with
/// </summary>
public class WorkGiver_Solicit : WorkGiver_Sexchecks
{
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
//ModLog.Message("" + this.GetType().ToString() + " base checks: pass");
Pawn target = t as Pawn;
if (target == pawn)
{
//JobFailReason.Is("no self solicit", null);
return false;
}
if (!WorkGiverChecks(pawn, t, forced))
return false;
if (!xxx.is_human(target))
{
return false;
}
//if (!pawn.CanReserve(target, xxx.max_rapists_per_prisoner, 0))
// return false;
//ModLog.Message("WorkGiver_Sex::" + SexAppraiser.would_fuck(target, pawn));
//if (SexAppraiser.would_fuck(target, pawn) < 0.1f)
//{
// return false;
//}
//ModLog.Message("" + this.GetType().ToString() + " extended checks: can start sex");
return true;
}
public override bool WorkGiverChecks(Pawn pawn, Thing t, bool forced = false)
{
Pawn target = t as Pawn;
if (pawn.HostileTo(target) || target.IsDesignatedComfort())
{
return false;
}
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
//TODO:: fix bed stealing during join other pawn
//Building_Bed bed = pawn.ownership.OwnedBed;
//if (bed == null)
// bed = (t as Pawn).ownership.OwnedBed;
Building_Bed bed = (pawn as Pawn).ownership.OwnedBed;
if (bed == null)
return null;
//if (pawn.CurrentBed() != (t as Pawn).CurrentBed())
// return null;
return JobMaker.MakeJob(xxx.whore_inviting_visitors, t as Pawn, bed);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_Solicit.cs
|
C#
|
mit
| 1,692
|
using RimWorld;
using Verse;
using Verse.AI;
namespace rjw
{
/// <summary>
/// Assigns a pawn to rape a corpse
/// </summary>
public class WorkGiver_ViolateCorpse : WorkGiver_Sexchecks
{
public override ThingRequest PotentialWorkThingRequest => ThingRequest.ForGroup(ThingRequestGroup.Corpse);
public override bool MoreChecks(Pawn pawn, Thing t, bool forced = false)
{
//ModLog.Message("" + this.GetType().ToString() + " base checks: pass");
if (!RJWSettings.necrophilia_enabled) return false;
//Pawn target = (t as Corpse).InnerPawn;
if (!pawn.CanReserve(t, xxx.max_rapists_per_prisoner, 0))
return false;
if (!(pawn.IsDesignatedHero() || RJWSettings.override_control))
if (!RJWSettings.WildMode)
{
if (xxx.is_necrophiliac(pawn) && !xxx.is_hornyorfrustrated(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("not horny enough");
return false;
}
if (!xxx.is_necrophiliac(pawn))
if ((t as Corpse).CurRotDrawMode != RotDrawMode.Fresh)
{
if (RJWSettings.DevMode) JobFailReason.Is("refuse to rape rotten");
return false;
}
else if (!xxx.is_frustrated(pawn))
{
if (RJWSettings.DevMode) JobFailReason.Is("not horny enough");
return false;
}
//ModLog.Message("WorkGiver_ViolateCorpse::" + SexAppraiser.would_fuck(pawn, t as Corpse));
if (SexAppraiser.would_fuck(pawn, t as Corpse) > 0.1f)
{
return false;
}
}
//ModLog.Message("" + this.GetType().ToString() + " extended checks: can start sex");
return true;
}
public override Job JobOnThing(Pawn pawn, Thing t, bool forced = false)
{
return JobMaker.MakeJob(xxx.RapeCorpse, t as Corpse);
}
}
}
|
jojo1541/rjw
|
1.1/Source/WorkGivers/WorkGiver_ViolateCorpse.cs
|
C#
|
mit
| 1,730
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<rjw.BackstoryDef>
<defName>rjw_childC</defName>
<baseDescription>[PAWN_nameDef] was born in civil settlement.</baseDescription>
<title>Child</title>
<titleShort>Child</titleShort>
<slot>Childhood</slot>
<categoryName>Civil</categoryName>
</rjw.BackstoryDef>
<rjw.BackstoryDef>
<defName>rjw_childT</defName>
<baseDescription>[PAWN_nameDef] was born in a tribe.</baseDescription>
<title>Child</title>
<titleShort>Child</titleShort>
<slot>Childhood</slot>
<categoryName>Tribal</categoryName>
</rjw.BackstoryDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/BackstoryDefs/BackstoryDefs.xml
|
XML
|
mit
| 595
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<BodyPartDef>
<defName>Genitals</defName>
<label>genitals</label>
<hitPoints>12</hitPoints>
<frostbiteVulnerability>0.01</frostbiteVulnerability>
<skinCovered>true</skinCovered>
<solid>false</solid>
<canSuggestAmputation>false</canSuggestAmputation>
<bleedRate>1.0</bleedRate>
<tags>
<li>RJW_Fertility</li>
</tags>
</BodyPartDef>
<BodyPartDef>
<defName>Chest</defName>
<label>chest</label>
<hitPoints>24</hitPoints>
<frostbiteVulnerability>0.01</frostbiteVulnerability>
<skinCovered>true</skinCovered>
<solid>false</solid>
<canSuggestAmputation>false</canSuggestAmputation>
<bleedRate>1.0</bleedRate>
</BodyPartDef>
<BodyPartDef>
<defName>Anus</defName>
<label>anus</label>
<hitPoints>8</hitPoints>
<frostbiteVulnerability>0.01</frostbiteVulnerability>
<skinCovered>true</skinCovered>
<solid>false</solid>
<canSuggestAmputation>false</canSuggestAmputation>
<bleedRate>1.0</bleedRate>
</BodyPartDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/BodyPartDefs/BodyParts_Humanlike.xml
|
XML
|
mit
| 1,017
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<BodyPartDef>
<defName>MechGenitals</defName>
<label>mechanoid implanter</label>
<hitPoints>20</hitPoints>
<skinCovered>true</skinCovered>
<solid>true</solid>
<canSuggestAmputation>false</canSuggestAmputation>
<bleedRate>0</bleedRate>
<frostbiteVulnerability>0.0</frostbiteVulnerability>
<tags>
<li>RJW_Fertility</li>
</tags>
</BodyPartDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/BodyPartDefs/BodyParts_Mech.xml
|
XML
|
mit
| 424
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<BodyPartTagDef>
<defName>RJW_Fertility</defName>
<label>fertility_source</label>
<description>Necessary for reproduction</description>
<vital>false</vital>
</BodyPartTagDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/BodyPartTagDefs/BodyPartTags_FertilitySource.xml
|
XML
|
mit
| 241
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<rjw.AgeConfigDef>
<defName>RJW_AgeConfig</defName>
<!-- Peak at 22. Not much penalty for old age because either aging-related issues have their own effects or they are removed with tech. -->
<attractivenessByAgeFemale>
<points>
<li>(12, 0)</li>
<li>(13, .7)</li>
<li>(18, .95)</li>
<li>(22, 1)</li>
<li>(38, .9)</li>
<li>(80, .8)</li>
</points>
</attractivenessByAgeFemale>
<!-- Peak at 28. Not much penalty for old age because either aging-related issues have their own effects or they are removed with tech. -->
<attractivenessByAgeMale>
<points>
<li>(12, 0)</li>
<li>(13, .5)</li>
<li>(18, .95)</li>
<li>(28, 1)</li>
<li>(38, .95)</li>
<li>(80, .9)</li>
</points>
</attractivenessByAgeMale>
<lovinIntervalHoursByAge>
<points>
<li>(1, 12)</li>
<li>(16, 6)</li>
<li>(22, 9)</li>
<li>(30, 12)</li>
<li>(50, 18)</li>
<li>(75, 24)</li>
</points>
</lovinIntervalHoursByAge>
<rigidityByAge>
<points>
<li>(0, .1)</li>
<li>(16, .1)</li>
<li>(40, 1)</li>
<li>(80, 1)</li>
</points>
</rigidityByAge>
<!-- In theory this should use the attractiveness code and so indirectly attractivenessByAge, but currently it doesn't. -->
<whoringPriceByAge>
<points>
<li>(12, 1)</li>
<li>(18, 1.5)</li>
<li>(24, 1.4)</li>
<li>(32, 1)</li>
<li>(48, .8)</li>
<li>(80, .6)</li>
<li>(400, .6)</li>
</points>
</whoringPriceByAge>
</rjw.AgeConfigDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/ConfigDefs/AgeConfig.xml
|
XML
|
mit
| 1,563
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<rjw.config>
<defName>the_one</defName>
<max_nymph_fraction>0.99</max_nymph_fraction>
<!-- STD stuff -->
<nymph_spawn_with_std_mul>3.0</nymph_spawn_with_std_mul>
<!-- Logs the process of handing out STDs after sex for debug purposes (or for anyone who's curious) -->
<std_show_roll_to_catch>false</std_show_roll_to_catch>
<!-- STD infections must be at least this severe to spread between pawns -->
<std_min_severity_to_pitch>0.21</std_min_severity_to_pitch>
<!-- "Clean" rooms (cleanliness stat >= 0) have their stat multiplied by this amount -->
<std_env_pitch_cleanliness_exaggeration>2.0</std_env_pitch_cleanliness_exaggeration>
<!-- "Dirty" rooms (cleanliness stat< 0) have their stat multiplied by this amount -->
<std_env_pitch_dirtiness_exaggeration>0.5</std_env_pitch_dirtiness_exaggeration>
<!-- Cleanliness stat for sex outside of a room -->
<std_outdoor_cleanliness>-1.0</std_outdoor_cleanliness>
<opp_inf_initial_immunity>0.55</opp_inf_initial_immunity>
<!-- Cooldown for animal breeding, CP.-->
<comfort_prisoner_rape_mtbh_mul>4.0</comfort_prisoner_rape_mtbh_mul>
<!-- Rape beating -->
<minor_pain_threshold>0.3</minor_pain_threshold>
<significant_pain_threshold>0.6</significant_pain_threshold>
<extreme_pain_threshold>0.9</extreme_pain_threshold>
<base_chance_to_hit_prisoner>0.50</base_chance_to_hit_prisoner>
<min_ticks_between_hits>500</min_ticks_between_hits>
<max_ticks_between_hits>700</max_ticks_between_hits>
</rjw.config>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/ConfigDefs/MiscConfig.xml
|
XML
|
mit
| 1,555
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<DamageDef>
<defName>ViralDamage</defName>
<workerClass>DamageWorker_AddInjury</workerClass>
<label>viral damage</label>
<externalViolence>false</externalViolence>
<deathMessage>{0} has died of a disease.</deathMessage>
<hediff>VirusPerma</hediff>
<hediffSkin>VirusPerma</hediffSkin>
<hediffSolid>VirusPerma</hediffSolid>
<makesBlood>false</makesBlood>
<harmAllLayersUntilOutside>false</harmAllLayersUntilOutside>
</DamageDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/DamageDefs/Damage_Viral.xml
|
XML
|
mit
| 503
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<ThingDef ParentName="MakeableDrugBase">
<defName>Aphrodisiac</defName>
<label>aphrodisiac drug</label>
<description>A smokable drug made from humpshroom.</description>
<graphicData>
<texPath>Things/Item/Drug/Penoxycyline</texPath>
<graphicClass>Graphic_StackCount</graphicClass>
</graphicData>
<rotatable>false</rotatable>
<statBases>
<WorkToMake>450</WorkToMake>
<MarketValue>50</MarketValue>
<Mass>0.05</Mass>
<DeteriorationRate>6</DeteriorationRate>
<Flammability>1.3</Flammability>
</statBases>
<techLevel>Medieval</techLevel>
<ingestible>
<foodType>Plant, Processed</foodType>
<joyKind>Chemical</joyKind>
<joy>0.80</joy>
<baseIngestTicks>720</baseIngestTicks>
<nurseable>true</nurseable>
<drugCategory>Social</drugCategory>
<ingestSound>Ingest_Smoke</ingestSound>
<ingestEffect>Smoke_Joint</ingestEffect>
<ingestEffectEat>EatVegetarian</ingestEffectEat>
<ingestHoldOffsetStanding>
<northDefault>
<offset>(0.27,0,0.08)</offset>
<behind>true</behind>
</northDefault>
<east>
<offset>(0.45,0,0.08)</offset>
</east>
<south>
<offset>(0.27,0,0.08)</offset>
</south>
<west>
<offset>(-0.50,0,0.08)</offset>
<flip>true</flip>
</west>
</ingestHoldOffsetStanding>
<ingestHoldUsesTable>false</ingestHoldUsesTable>
<ingestCommandString>Smoke {0}</ingestCommandString>
<ingestReportString>Smoking {0}.</ingestReportString>
<ingestReportStringEat>Consuming {0}.</ingestReportStringEat>
<useEatingSpeedStat>false</useEatingSpeedStat>
<outcomeDoers>
<li Class="IngestionOutcomeDoer_GiveHediff">
<hediffDef>HumpShroomEffect</hediffDef>
<severity>0.6</severity>
<toleranceChemical>HumpShroom</toleranceChemical>
</li>
<li Class="IngestionOutcomeDoer_GiveHediff">
<hediffDef>HumpShroomTolerance</hediffDef>
<severity>0.042</severity>
<divideByBodySize>true</divideByBodySize>
</li>
<li Class="IngestionOutcomeDoer_OffsetNeed">
<need>Sex</need>
<offset>-0.5</offset>
</li>
</outcomeDoers>
</ingestible>
<recipeMaker>
<recipeUsers>
<li>CraftingSpot</li>
<li>DrugLab</li>
</recipeUsers>
<workSpeedStat>DrugCookingSpeed</workSpeedStat>
<workSkill>Cooking</workSkill>
</recipeMaker>
<costList>
<HumpShroom>4</HumpShroom>
</costList>
<comps>
<li Class="CompProperties_Drug">
<chemical>HumpShroom</chemical>
<addictiveness>0.030</addictiveness>
<minToleranceToAddict>0.15</minToleranceToAddict>
<existingAddictionSeverityOffset>0.1</existingAddictionSeverityOffset>
<needLevelOffset>1</needLevelOffset>
<listOrder>30</listOrder>
</li>
</comps>
</ThingDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/Drugs/Aphrodisiac.xml
|
XML
|
mit
| 2,782
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!--As usual stolen from CnP-->
<ThingDef ParentName="MakeableDrugPillBase">
<defName>RJW_Contraceptive</defName>
<label>contraception pill</label>
<description>Deliver severe hit to fertility for one quadrum.</description>
<graphicData>
<texPath>Things/Item/Contraceptive</texPath>
<graphicClass>Graphic_StackCount</graphicClass>
</graphicData>
<rotatable>false</rotatable>
<statBases>
<WorkToMake>120</WorkToMake>
<MarketValue>15</MarketValue>
<Mass>0.05</Mass>
</statBases>
<techLevel>Industrial</techLevel>
<ingestible>
<drugCategory>Medical</drugCategory>
<outcomeDoers>
<li Class="IngestionOutcomeDoer_GiveHediff">
<hediffDef>RJW_Contraceptive</hediffDef>
<severity>1.0</severity>
</li>
</outcomeDoers>
</ingestible>
<recipeMaker>
<researchPrerequisite>DrugProduction</researchPrerequisite>
<recipeUsers>
<li>DrugLab</li>
</recipeUsers>
</recipeMaker>
<costList>
<MedicineHerbal>1</MedicineHerbal>
</costList>
<comps>
<li Class="CompProperties_Drug">
<addictiveness>0</addictiveness>
<listOrder>1000</listOrder>
<overdoseSeverityOffset>
<min>0.08</min>
<max>0.14</max>
</overdoseSeverityOffset>
</li>
</comps>
</ThingDef>
<HediffDef>
<defName>RJW_Contraceptive</defName>
<hediffClass>HediffWithComps</hediffClass>
<label>contraceptive</label>
<description>Contraception pills deliver severe hit to fertility for one quadrum.</description>
<defaultLabelColor>(0.75, 0.75, 1.0)</defaultLabelColor>
<isBad>false</isBad>
<comps>
<!-- Disappears after a season's time -->
<li Class="HediffCompProperties_Disappears">
<disappearsAfterTicks>
<min>900000</min>
<max>900000</max>
</disappearsAfterTicks>
</li>
</comps>
<stages>
<li>
<label>Contracepted</label>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<setMax>0.1</setMax>
</li>
</capMods>
</li>
</stages>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/Drugs/Contraceptive.xml
|
XML
|
mit
| 2,049
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!--As usual stolen from CnP-->
<ThingDef ParentName="MakeableDrugPillBase">
<defName>RJW_FertPill</defName>
<label>hyperfertility pill</label>
<description>Enhances fertility for 48 hours. Also works as a mild aphrodisiac.</description>
<graphicData>
<texPath>Things/Item/FertPill</texPath>
<graphicClass>Graphic_StackCount</graphicClass>
</graphicData>
<rotatable>false</rotatable>
<statBases>
<WorkToMake>120</WorkToMake>
<MarketValue>15</MarketValue>
<Mass>0.05</Mass>
</statBases>
<techLevel>Industrial</techLevel>
<ingestible>
<drugCategory>Medical</drugCategory>
<outcomeDoers>
<li Class="IngestionOutcomeDoer_GiveHediff">
<hediffDef>RJW_FertPill</hediffDef>
<severity>1.0</severity>
</li>
<li Class="IngestionOutcomeDoer_OffsetNeed">
<need>Sex</need>
<offset>-0.25</offset>
</li>
</outcomeDoers>
</ingestible>
<recipeMaker>
<researchPrerequisite>DrugProduction</researchPrerequisite>
<recipeUsers>
<li>DrugLab</li>
</recipeUsers>
</recipeMaker>
<costList>
<MedicineHerbal>1</MedicineHerbal>
<HumpShroom>1</HumpShroom>
</costList>
<comps>
<li Class="CompProperties_Drug">
<addictiveness>0</addictiveness>
<listOrder>1000</listOrder>
<overdoseSeverityOffset>
<min>0.08</min>
<max>0.14</max>
</overdoseSeverityOffset>
</li>
</comps>
</ThingDef>
<HediffDef>
<defName>RJW_FertPill</defName>
<hediffClass>HediffWithComps</hediffClass>
<label>fertpill</label>
<description>Enhanced fertility. A mild aphrodisiac.</description>
<defaultLabelColor>(0.75, 0.75, 1.0)</defaultLabelColor>
<isBad>false</isBad>
<comps>
<!-- Disappears after 2 days time -->
<li Class="HediffCompProperties_Disappears">
<disappearsAfterTicks>
<min>120000</min>
<max>120000</max>
</disappearsAfterTicks>
</li>
</comps>
<stages>
<li>
<label>Hyperfertility</label>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>4</offset>
</li>
</capMods>
</li>
</stages>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/Drugs/FertPill.xml
|
XML
|
mit
| 2,149
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!-- Plant -->
<ThingDef ParentName="CavePlantBase">
<defName>PlantHumpShroom</defName>
<label>humpshroom shroom</label>
<description>Thick shroom with tough flesh, thick juice and smooth soft skin. Exhibits aphrodisiac effects when consumed, refills psyfocus.</description>
<statBases>
<MaxHitPoints>85</MaxHitPoints>
<Beauty>2</Beauty>
<Nutrition>0.15</Nutrition>
<MeditationFocusStrength>1.0</MeditationFocusStrength>
</statBases>
<graphicData>
<texPath>Things/Item/Humpshroom/Humpshroom</texPath>
<graphicClass>Graphic_Single</graphicClass>
</graphicData>
<selectable>true</selectable>
<pathCost>10</pathCost>
<plant>
<fertilityMin>0.01</fertilityMin>
<fertilitySensitivity>0.25</fertilitySensitivity>
<growDays>15.00</growDays>
<harvestTag>Standard</harvestTag>
<harvestedThingDef>HumpShroom</harvestedThingDef>
<harvestYield>2</harvestYield>
<sowMinSkill>4</sowMinSkill>
<sowTags>
<li>Hydroponic</li>
</sowTags>
<topWindExposure>0.1</topWindExposure>
<visualSizeRange>0.4~0.7</visualSizeRange>
</plant>
<comps>
<li Class="CompProperties_Glower">
<glowRadius>1</glowRadius>
<glowColor>(255,105,180,0)</glowColor>
</li>
<li Class="CompProperties_MeditationFocus">
<statDef>MeditationFocusStrength</statDef>
<focusTypes>
<li>Sex</li>
</focusTypes>
</li>
</comps>
</ThingDef>
<!--Consumable item-->
<ThingDef ParentName="DrugBase">
<defName>HumpShroom</defName>
<label>Hump shroom</label>
<description>A shroom with tough flesh, thick juice and smooth soft skin. Exhibits aphrodisiac effects when consumed, refills psyfocus.</description>
<tradeability>Sellable</tradeability>
<socialPropernessMatters>true</socialPropernessMatters>
<tickerType>Rare</tickerType>
<graphicData>
<texPath>Things/Item/Humpshroom/HumpshroomCollected</texPath>
<graphicClass>Graphic_Single</graphicClass>
</graphicData>
<thingCategories>
<li>PlantFoodRaw</li>
</thingCategories>
<statBases>
<MarketValue>10</MarketValue>
<Mass>0.1</Mass>
<DeteriorationRate>4</DeteriorationRate>
<Nutrition>0.40</Nutrition>
</statBases>
<techLevel>Neolithic</techLevel>
<ingestible>
<baseIngestTicks>100</baseIngestTicks>
<chairSearchRadius>4</chairSearchRadius>
<preferability>RawTasty</preferability>
<tasteThought></tasteThought>
<foodType>VegetableOrFruit</foodType>
<maxNumToIngestAtOnce>1</maxNumToIngestAtOnce>
<optimalityOffsetHumanlikes>-6</optimalityOffsetHumanlikes>
<optimalityOffsetFeedingAnimals>-11</optimalityOffsetFeedingAnimals>
<ingestEffect>EatVegetarian</ingestEffect>
<ingestSound>RawVegetable_Eat</ingestSound>
<joy>0.5</joy>
<joyKind>Social</joyKind>
<nurseable>true</nurseable>
<drugCategory>Social</drugCategory>
<outcomeDoers>
<li Class="IngestionOutcomeDoer_GiveHediff">
<hediffDef>HumpShroomEffect</hediffDef>
<severity>0.50</severity>
<toleranceChemical>HumpShroom</toleranceChemical>
</li>
<li Class="IngestionOutcomeDoer_GiveHediff">
<hediffDef>HumpShroomTolerance</hediffDef>
<severity>0.032</severity>
<divideByBodySize>true</divideByBodySize>
</li>
<li Class="IngestionOutcomeDoer_OffsetNeed">
<need>Sex</need>
<offset>-0.5</offset>
</li>
<li Class="IngestionOutcomeDoer_OffsetPsyfocus">
<offset>1.0</offset>
</li>
</outcomeDoers>
</ingestible>
<comps>
<li Class="CompProperties_Forbiddable" />
<li Class="CompProperties_Ingredients" />
<li Class="CompProperties_Rottable">
<daysToRotStart>30</daysToRotStart>
<rotDestroys>true</rotDestroys>
</li>
<li Class="CompProperties_Drug">
<chemical>HumpShroom</chemical>
<addictiveness>0.050</addictiveness>
<minToleranceToAddict>0.15</minToleranceToAddict>
<existingAddictionSeverityOffset>0.1</existingAddictionSeverityOffset>
<needLevelOffset>1</needLevelOffset>
<listOrder>30</listOrder>
</li>
</comps>
</ThingDef>
<HediffDef>
<defName>HumpShroomEffect</defName>
<hediffClass>HediffWithComps</hediffClass>
<label>Induced libido</label>
<description>Hump shroom aphrodisiac effects.</description>
<defaultLabelColor>(1,0,0.5)</defaultLabelColor>
<scenarioCanAdd>true</scenarioCanAdd>
<maxSeverity>1.0</maxSeverity>
<comps>
<li Class="HediffCompProperties_SeverityPerDay">
<severityPerDay>-0.9</severityPerDay>
</li>
</comps>
<stages>
<li>
<restFallFactor>1.33</restFallFactor>
<statOffsets>
<SexFrequency>2</SexFrequency>
<SexSatisfaction>0.5</SexSatisfaction>
</statOffsets>
</li>
</stages>
</HediffDef>
<ThoughtDef>
<defName>HumpShroomEffect</defName>
<workerClass>ThoughtWorker_Hediff</workerClass>
<hediff>HumpShroomEffect</hediff>
<validWhileDespawned>true</validWhileDespawned>
<stages>
<li>
<label>Humpshroom aftertaste</label>
<description>Tastes funny.</description>
<baseMoodEffect>1</baseMoodEffect>
</li>
</stages>
</ThoughtDef>
<!-- Ambrosia addiction -->
<ChemicalDef>
<defName>HumpShroom</defName>
<label>humpshroom</label>
<addictionHediff>HumpShroomAddiction</addictionHediff>
<toleranceHediff>HumpShroomTolerance</toleranceHediff>
<onGeneratedAddictedToleranceChance>0.8</onGeneratedAddictedToleranceChance>
</ChemicalDef>
<NeedDef ParentName="DrugAddictionNeedBase">
<defName>Chemical_HumpShroom</defName>
<needClass>Need_Chemical</needClass>
<label>humpshroom</label>
<description>Person is now hooked on shrooms. Without them, their bedroom performance may fall.</description>
<listPriority>10</listPriority>
</NeedDef>
<HediffDef ParentName="DrugToleranceBase">
<defName>HumpShroomTolerance</defName>
<label>humpshroom tolerance</label>
<description>Hump shroom effects tolerance.</description>
<isBad>false</isBad>
<comps>
<li Class="HediffCompProperties_SeverityPerDay">
<severityPerDay>-0.020</severityPerDay>
</li>
<li Class="HediffCompProperties_DrugEffectFactor">
<chemical>HumpShroom</chemical>
</li>
</comps>
</HediffDef>
<HediffDef ParentName="AddictionBase">
<defName>HumpShroomAddiction</defName>
<hediffClass>Hediff_Addiction</hediffClass>
<label>humpshroom addiction</label>
<description>Hump shroom effects addiction.</description>
<causesNeed>Chemical_HumpShroom</causesNeed>
<comps>
<li Class="HediffCompProperties_SeverityPerDay">
<severityPerDay>-0.1</severityPerDay>
<showDaysToRecover>true</showDaysToRecover>
</li>
</comps>
<stages>
<li>
</li>
<li>
<label>withdrawal</label>
<statOffsets>
<SexSatisfaction>-1</SexSatisfaction>
</statOffsets>
</li>
</stages>
</HediffDef>
<ThoughtDef>
<defName>HumpShroomWithdrawal</defName>
<workerClass>ThoughtWorker_Hediff</workerClass>
<hediff>HumpShroomAddiction</hediff>
<validWhileDespawned>true</validWhileDespawned>
<stages>
<li>
<visible>false</visible>
</li>
<li>
<label>humpshroom withdrawal</label>
<description>I just feel nothing down there.</description>
<baseMoodEffect>-5</baseMoodEffect>
</li>
</stages>
</ThoughtDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/Drugs/Humpshroom.xml
|
XML
|
mit
| 7,241
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<HediffDef Name="BondageBase" Abstract="True">
<hediffClass>Hediff</hediffClass>
<defaultLabelColor>(0.5, 0.5, 0.9)</defaultLabelColor>
<makesSickThought>false</makesSickThought>
<isBad>false</isBad>
<tendable>false</tendable>
<scenarioCanAdd>false</scenarioCanAdd>
</HediffDef>
<HediffDef ParentName="BondageBase">
<defName>Chains</defName>
<label>chains</label>
<labelNoun>chains</labelNoun>
<description>A series of chains that restrict its wearer.</description>
<stages>
<li>
<capMods>
<li>
<capacity>Manipulation</capacity>
<setMax>0.35</setMax>
</li>
<li>
<capacity>Moving</capacity>
<setMax>0.35</setMax>
</li>
</capMods>
</li>
</stages>
</HediffDef>
<HediffDef ParentName="BondageBase">
<defName>BoundHands</defName>
<label>bound hands</label>
<labelNoun>bound hands</labelNoun>
<description>Bound hands.</description>
<stages>
<li>
<capMods>
<li>
<capacity>Manipulation</capacity>
<setMax>0.00</setMax>
</li>
</capMods>
</li>
</stages>
</HediffDef>
<HediffDef ParentName="BondageBase">
<defName>BoundLegs</defName>
<label>bound legs</label>
<labelNoun>bound legs</labelNoun>
<description>Bound legs.</description>
<stages>
<li>
<capMods>
<li>
<capacity>Moving</capacity>
<setMax>0.00</setMax>
</li>
</capMods>
</li>
</stages>
</HediffDef>
<HediffDef ParentName="BondageBase">
<defName>RJW_Restraints</defName>
<label>Restraints</label>
<labelNoun>restraints</labelNoun>
<description>A set of restraints.</description>
<stages>
<li>
<capMods>
<li>
<capacity>Manipulation</capacity>
<setMax>0.00</setMax>
</li>
<li>
<capacity>Moving</capacity>
<setMax>0.00</setMax>
</li>
</capMods>
</li>
</stages>
</HediffDef>
<!-- insect restraints -->
<HediffDef ParentName="BondageBase">
<defName>RJW_Cocoon</defName>
<hediffClass>rjw.Cocoon</hediffClass>
<label>Cocoon</label>
<labelNoun>A cocoon</labelNoun>
<description>A cocoon that tends to its host until ready to procreate.</description>
<stages>
<li>
<capMods>
<li>
<capacity>Manipulation</capacity>
<setMax>0.00</setMax>
</li>
<li>
<capacity>Moving</capacity>
<setMax>0.00</setMax>
</li>
</capMods>
<statOffsets>
<ComfyTemperatureMin>-50</ComfyTemperatureMin>
<ComfyTemperatureMax>50</ComfyTemperatureMax>
</statOffsets>
</li>
</stages>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_Bondage.xml
|
XML
|
mit
| 2,621
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!--master hediff adding up the smaller semen splatches-->
<HediffDef>
<defName>Hediff_Bukkake</defName>
<hediffClass>rjw.Hediff_Bukkake</hediffClass>
<label>Bukkake</label>
<description>Ejaculated onto.</description>
<makesSickThought>false</makesSickThought>
<initialSeverity>0.01</initialSeverity>
<maxSeverity>1</maxSeverity>
<!--<injuryProps>-->
<!--<canMerge>true</canMerge>--><!-- this might not even be required-->
<!--</injuryProps>-->
<!--<scenarioCanAdd>true</scenarioCanAdd>-->
<isBad>false</isBad>
<tendable>false</tendable>
<stages>
<li>
<label>minor</label>
<becomeVisible>false</becomeVisible>
</li>
<li>
<minSeverity>0.3</minSeverity>
<label>little</label>
<statOffsets>
<Vulnerability>0.2</Vulnerability>
<SocialImpact>-0.1</SocialImpact>
</statOffsets>
</li>
<li>
<minSeverity>0.6</minSeverity>
<label>extensive</label>
<statOffsets>
<Vulnerability>0.3</Vulnerability>
<SocialImpact>-0.3</SocialImpact>
</statOffsets>
</li>
<li>
<minSeverity>0.8</minSeverity>
<label>full</label>
<statOffsets>
<Vulnerability>-0.1</Vulnerability><!--pawns prefer victims not being completely drenched-->
<SocialImpact>-0.5</SocialImpact>
</statOffsets>
</li>
</stages>
</HediffDef>
<HediffDef Name="Hediff_Semen">
<hediffClass>rjw.Hediff_Semen</hediffClass>
<defName>Hediff_Semen</defName>
<label>semen</label>
<labelNoun>semen</labelNoun>
<description>Semen.</description>
<labelNounPretty>semen on {1}</labelNounPretty>
<defaultLabelColor>(0.95,0.95,0.95)</defaultLabelColor>
<isBad>false</isBad>
<tendable>false</tendable>
<makesSickThought>false</makesSickThought>
<makesAlert>false</makesAlert>
<maxSeverity>1</maxSeverity>
<initialSeverity>0.001</initialSeverity>
<injuryProps>
<canMerge>true</canMerge>
</injuryProps>
<stages>
<li>
<label>little</label>
</li>
<li>
<minSeverity>0.25</minSeverity>
<label>some</label>
</li>
<li>
<minSeverity>0.5</minSeverity>
<label>dripping</label>
</li>
<li>
<minSeverity>0.8</minSeverity>
<label>drenched</label>
</li>
</stages>
<comps>
<li Class="HediffCompProperties_SelfHeal">
<!--0.01*100*1800/60.0000-->
<healIntervalTicksStanding>1800</healIntervalTicksStanding><!-- 1 day = 60.000 ticks -->
<healAmount>0.01</healAmount><!--dries by itself, completely drying from 1.0 to 0.0 takes ~72h-->
</li>
</comps>
</HediffDef>
<HediffDef ParentName="Hediff_Semen">
<defName>Hediff_InsectSpunk</defName>
<description>Insect spunk.</description>
<label>insect spunk</label>
<labelNoun>insect spunk</labelNoun>
<labelNounPretty>insect spunk on {1}</labelNounPretty>
<defaultLabelColor>(0.6,0.83,0.35)</defaultLabelColor>
</HediffDef>
<HediffDef ParentName="Hediff_Semen">
<defName>Hediff_MechaFluids</defName>
<description>Mechanoid fluids.</description>
<label>mechanoid fluids</label>
<labelNoun>mechanoid fluids</labelNoun>
<labelNounPretty>mecha fluids on {1}</labelNounPretty>
<defaultLabelColor>(0.37,0.71,0.82)</defaultLabelColor>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_Bukkake.xml
|
XML
|
mit
| 3,249
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!--Pawns with ovi's plant egg.-->
<rjw.HediffDef_InsectEgg Name="RJW_ImplantEgg" Abstract="True">
<defName>RJW_InsectEgg</defName>
<label>Egg</label>
<hediffClass>rjw.Hediff_InsectEgg</hediffClass>
<description>Parasitic egg(s) that enter the host's body and feeds off their nutrients until ready to hatch. Just be glad they don't hatch by bursting out of your chest.</description>
<defaultLabelColor>(0.8, 0.8, 0.35)</defaultLabelColor>
<initialSeverity>0.01</initialSeverity>
<isBad>false</isBad>
<tendable>false</tendable>
<eggsize>1</eggsize> <!--eggsize 1 = 100%, 0 - can hold unlimited eggs, up to 100 eggs per sex-->
<selffertilized>false</selffertilized> <!--egg will be implanted fertilized-->
<stages>
<li>
<minSeverity>0.01</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.01</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.02</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.02</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.05</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.05</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.10</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.10</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.15</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.15</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.20</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.20</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.25</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.25</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.30</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.30</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.40</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.40</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.50</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.50</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.75</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.75</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.9</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-1.0</offset>
</li>
</capMods>
</li>
</stages>
</rjw.HediffDef_InsectEgg>
<!--Placeholder egg/unsupported/any races-->
<rjw.HediffDef_InsectEgg ParentName="RJW_ImplantEgg">
<defName>RJW_UnknownEgg</defName>
<parentDef>Unknown</parentDef> <!-- exact match-->
<UnFertEggDef>RJW_EggUnfertilized</UnFertEggDef> <!-- egg props: color, desc etc-->
<FertEggDef>RJW_EggFertilized</FertEggDef> <!-- egg props: color, desc etc-->
</rjw.HediffDef_InsectEgg>
<!--vanilla insects, can fertilize each other -->
<rjw.HediffDef_InsectEgg ParentName="RJW_ImplantEgg">
<defName>RJW_InsectHiveEgg</defName>
<parentDefs> <!-- partial string match of pawn.kindDef.defName-->
<li>Megascarab</li>
<li>Spelopede</li>
<li>Megaspider</li>
<li>Queen</li> <!-- Better infestations-->
</parentDefs>
<childrenDefs> <!-- list of pawnkinds to spawn from/ doesn't match implanter egg type(RJW_InsectEgg) =( , maybe needs self-fertilized eggs or something-->
<li>Megascarab</li>
<li>Megascarab</li>
<li>Megascarab</li>
<li>Megascarab</li>
<li>Megascarab</li>
<li>Spelopede</li>
<li>Spelopede</li>
<li>Spelopede</li>
<li>Spelopede</li>
<li>Megaspider</li>
</childrenDefs>
<UnFertEggDef>RJW_EggInsectUnfertilized</UnFertEggDef>
<FertEggDef>RJW_EggInsectFertilized</FertEggDef>
</rjw.HediffDef_InsectEgg>
<!--vanilla mechanoids. Mechs implant things.-->
<rjw.HediffDef_MechImplants Name="RJW_ImplantMech" Abstract="True">
<hediffClass>rjw.Hediff_MechImplants</hediffClass>
<defaultLabelColor>(0.8, 0.8, 0.35)</defaultLabelColor>
<description>A small computer that enters a host through one of their orifices. Can analyze vital signs and location data, and relay that information back to mechanoid ai.</description>
<initialSeverity>0.01</initialSeverity>
<isBad>false</isBad>
<tendable>false</tendable>
</rjw.HediffDef_MechImplants>
<rjw.HediffDef_MechImplants ParentName="RJW_ImplantMech">
<defName>RJW_MechanoidImplant</defName>
<parentDefs>
<li>Mech_Lancer</li>
<li>Mech_Scyther</li>
<li>Mech_Centipede</li>
<li>Mech_Pikeman</li>
</parentDefs>
<childrenDefs>
<li>Mech_Scyther</li>
</childrenDefs>
</rjw.HediffDef_MechImplants>
<!--deprecated-->
<!--rip-->
<!--maybe readd someday?-->
<rjw.HediffDef_MechImplants ParentName="RJW_ImplantMech">
<hediffClass>rjw.Hediff_MicroComputer</hediffClass>
<defName>RJW_MicroComputer</defName>
<tendable>false</tendable>
<isBad>true</isBad>
<label>MicroComputer</label>
<description>A small computer that enters a host through one of their orifices. Can analyze vital signs and location data, and relay that information back to its implanter.</description>
<minEventInterval>30000</minEventInterval>
<maxEventInterval>90000</maxEventInterval>
<randomHediffDefs>
<li>RJW_Orgasm</li>
<li>TransportCums</li>
<li>TransportEggs</li>
</randomHediffDefs>
</rjw.HediffDef_MechImplants>
<rjw.HediffDef_EnemyImplants>
<defName>Parasite</defName>
<hediffClass>rjw.Hediff_Parasite</hediffClass>
<defaultLabelColor>(0.7, 1.0, 0.7)</defaultLabelColor>
<initialSeverity>0.1</initialSeverity>
<isBad>true</isBad>
<label>pregnant</label>
<description>A organism that lives inside a host and feeds off its nutrients, giving the host severe discomfort.</description>
<comps>
<li Class="HediffCompProperties_Discoverable">
<sendLetterWhenDiscovered>true</sendLetterWhenDiscovered>
<discoverLetterLabel>{0} Parasited</discoverLetterLabel>
<discoverLetterText>{0} is parasited!</discoverLetterText>
</li>
</comps>
<stages>
<li>
<label>early-stage-hidden</label>
<becomeVisible>false</becomeVisible>
<vomitMtbDays>2.5</vomitMtbDays>
</li>
<li>
<label>middle-stage</label>
<minSeverity>0.333</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.15</offset>
</li>
</capMods>
</li>
<li>
<label>late-stage</label>
<minSeverity>0.666</minSeverity>
<vomitMtbDays>2</vomitMtbDays>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.30</offset>
</li>
</capMods>
</li>
</stages>
</rjw.HediffDef_EnemyImplants>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_EnemyImplants.xml
|
XML
|
mit
| 7,010
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<HediffDef>
<defName>FeelingBroken</defName>
<hediffClass>rjw.AdvancedHediffWithComps</hediffClass>
<label>Feeling broken</label>
<defaultLabelColor>(0.5, 0.7, 0.45)</defaultLabelColor>
<makesSickThought>false</makesSickThought>
<initialSeverity>0.025</initialSeverity>
<maxSeverity>1</maxSeverity>
<scenarioCanAdd>true</scenarioCanAdd>
<tendable>false</tendable>
<description>Mind broken. No longer capable of emotion.</description>
<isBad>false</isBad>
<comps>
<li Class="rjw.HediffCompProperties_FeelingBrokenSeverityReduce">
<severityPerDayReduce>
<points>
<li>(1,0)</li>
<li>(10,-0.025)</li>
</points>
</severityPerDayReduce>
</li>
<li Class="rjw.HediffCompProperties_FeelingBrokenSeverityIncrease">
<severityPerDayIncrease>
<points>
<li>(0,0.1)</li>
<li>(1,1)</li>
</points>
</severityPerDayIncrease>
</li>
</comps>
<stages>
<li>
<label>early-stage</label>
<becomeVisible>false</becomeVisible>
</li>
<li>
<label>in a trance</label>
<minSeverity>0.1</minSeverity>
<painOffset>0.1</painOffset>
<capMods>
<li>
<capacity>Consciousness</capacity>
<postFactor>0.8</postFactor>
</li>
</capMods>
</li>
<li>
<label>broken</label>
<minSeverity>0.3</minSeverity>
<painOffset>0.05</painOffset>
<capMods>
<li>
<capacity>Consciousness</capacity>
<postFactor>0.7</postFactor>
</li>
</capMods>
<statOffsets>
<Vulnerability>0.25</Vulnerability>
</statOffsets>
</li>
<li>
<label>Extremely broken</label>
<minSeverity>0.5</minSeverity>
<painOffset>-0.1</painOffset>
<capMods>
<li>
<capacity>Consciousness</capacity>
<postFactor>0.6</postFactor>
</li>
</capMods>
<statOffsets>
<Vulnerability>0.5</Vulnerability>
</statOffsets>
</li>
</stages>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_FeelingBroken.xml
|
XML
|
mit
| 1,987
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<HediffDef>
<defName>RJW_IUD</defName>
<label>IUD</label>
<hediffClass>HediffWithComps</hediffClass>
<description>A small silver device inserted into the womb that reduces chance of pregnancy by 99%.</description>
<defaultLabelColor>(0.8, 0.8, 0.35)</defaultLabelColor>
<isBad>false</isBad>
<scenarioCanAdd>true</scenarioCanAdd>
</HediffDef>
<HediffDef>
<defName>IncreasedFertility</defName>
<label>Increased fertility</label>
<description>Increased fertility, for baby making.</description>
<hediffClass>HediffWithComps</hediffClass>
<defaultLabelColor>(0.7, 1.0, 0.7)</defaultLabelColor>
<isBad>false</isBad>
<scenarioCanAdd>false</scenarioCanAdd>
<stages>
<li>
<becomeVisible>false</becomeVisible>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
</capMods>
</li>
</stages>
</HediffDef>
<HediffDef>
<defName>DecreasedFertility</defName>
<label>Low fertility</label>
<description>Low fertility.</description>
<hediffClass>HediffWithComps</hediffClass>
<defaultLabelColor>(1, 0.2, 0.2)</defaultLabelColor>
<isBad>false</isBad>
<scenarioCanAdd>false</scenarioCanAdd>
<stages>
<li>
<becomeVisible>false</becomeVisible>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>-0.5</offset>
<setMax>0.25</setMax>
</li>
</capMods>
</li>
</stages>
</HediffDef>
<HediffDef>
<defName>ImpregnationBlocker</defName>
<label>Archotech pregnancy blocker</label>
<description>A complex device that prevents the ovaries from producing eggs.</description>
<hediffClass>HediffWithComps</hediffClass>
<defaultLabelColor>(0.7, 1.0, 0.7)</defaultLabelColor>
<isBad>false</isBad>
<scenarioCanAdd>false</scenarioCanAdd>
<stages>
<li>
<becomeVisible>true</becomeVisible>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<setMax>0</setMax>
</li>
</capMods>
</li>
</stages>
</HediffDef>
<HediffDef>
<defName>FertilityEnhancer</defName>
<label>Archotech fertility enhancer</label>
<description>A complex device that increases the likelihood of pregnancy.</description>
<hediffClass>HediffWithComps</hediffClass>
<defaultLabelColor>(0.7, 1.0, 0.7)</defaultLabelColor>
<isBad>false</isBad>
<scenarioCanAdd>false</scenarioCanAdd>
<stages>
<li>
<becomeVisible>true</becomeVisible>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>1</offset>
</li>
</capMods>
</li>
</stages>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_Fertility.xml
|
XML
|
mit
| 2,621
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!--
<HediffDef>
<defName>RJW_lactating</defName>
<hediffClass>HediffWithComps</hediffClass>
<defaultLabelColor>(1, 0.41, 0.81)</defaultLabelColor>
<isBad>false</isBad>
<label>lactating</label>
<comps>
<li Class="HediffCompProperties_Disappears">
<disappearsAfterTicks>
<min>2750000</min>
<max>3000000</max>
</disappearsAfterTicks>
</li>
</comps>
</HediffDef>
-->
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_Lactating.xml
|
XML
|
mit
| 460
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<HediffDef>
<defName>RJW_Orgasm</defName>
<hediffClass>rjw.Hediff_Orgasm</hediffClass>
<label>Orgasm</label>
<defaultLabelColor>(0.5, 0.7, 0.45)</defaultLabelColor>
<makesSickThought>false</makesSickThought>
<initialSeverity>0.1</initialSeverity>
<maxSeverity>1</maxSeverity>
<scenarioCanAdd>false</scenarioCanAdd>
<tendable>false</tendable>
<description>"Ohh, yeahh, hah, hnnh, OH!"</description>
<comps>
<li Class="HediffCompProperties_SeverityPerDay">
<severityPerDay>-1</severityPerDay>
</li>
</comps>
<stages>
<li>
<label>Slightly</label>
<capMods>
<li>
<capacity>Consciousness</capacity>
<postFactor>0.9</postFactor>
</li>
<li>
<capacity>Manipulation</capacity>
<postFactor>0.9</postFactor>
</li>
<li>
<capacity>Moving</capacity>
<postFactor>0.9</postFactor>
</li>
<li>
<capacity>Talking</capacity>
<postFactor>0.9</postFactor>
</li>
</capMods>
<statOffsets>
<Vulnerability>0.2</Vulnerability>
</statOffsets>
</li>
<li>
<label>Heavy</label>
<minSeverity>0.2</minSeverity>
<capMods>
<li>
<capacity>Consciousness</capacity>
<postFactor>0.65</postFactor>
</li>
<li>
<capacity>Manipulation</capacity>
<postFactor>0.65</postFactor>
</li>
<li>
<capacity>Moving</capacity>
<postFactor>0.65</postFactor>
</li>
<li>
<capacity>Talking</capacity>
<postFactor>0.65</postFactor>
</li>
</capMods>
<statOffsets>
<Vulnerability>0.3</Vulnerability>
</statOffsets>
</li>
<li>
<label>Extremely</label>
<minSeverity>0.501</minSeverity>
<capMods>
<li>
<capacity>Consciousness</capacity>
<postFactor>0.3</postFactor>
</li>
<li>
<capacity>Manipulation</capacity>
<postFactor>0.65</postFactor>
</li>
<li>
<capacity>Moving</capacity>
<postFactor>0.2</postFactor>
</li>
<li>
<capacity>Talking</capacity>
<postFactor>0.5</postFactor>
</li>
</capMods>
<statOffsets>
<Vulnerability>0.6</Vulnerability>
</statOffsets>
</li>
</stages>
</HediffDef>
<HediffDef>
<defName>TransportCums</defName>
<hediffClass>rjw.Hediff_TransportCums</hediffClass>
<description>Cumming inside.</description>
<isBad>false</isBad>
</HediffDef>
<HediffDef>
<defName>TransportEggs</defName>
<hediffClass>rjw.Hediff_TransportEggs</hediffClass>
<description>Laying egg inside.</description>
<isBad>false</isBad>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_MCEvents.xml
|
XML
|
mit
| 2,659
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!-- Severity will be set to equal (1.0 - blood_filtration) in xxx.update_std_effects -->
<HediffDef>
<defName>Immunodeficiency</defName>
<hediffClass>rjw.Hediff_ID</hediffClass>
<defaultLabelColor>(1.0, 0.0, 0.0)</defaultLabelColor>
<label>Immunodeficiency</label>
<makesSickThought>false</makesSickThought>
<minSeverity>0.600</minSeverity>
<description>Very susceptible to disease.</description>
<initialSeverity>0.601</initialSeverity>
<tendable>false</tendable>
<stages>
<li>
<minSeverity>0.60</minSeverity>
<label>minor</label>
<restFallFactor>1.10</restFallFactor>
<capMods>
<li>
<capacity>Consciousness</capacity>
<offset>-0.05</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.75</minSeverity>
<label>major</label>
<restFallFactor>1.30</restFallFactor>
<capMods>
<li>
<capacity>Consciousness</capacity>
<offset>-0.10</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.15</offset>
</li>
<li>
<capacity>Moving</capacity>
<offset>-0.15</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.90</minSeverity>
<label>extreme</label>
<restFallFactor>1.50</restFallFactor>
<capMods>
<li>
<capacity>Consciousness</capacity>
<offset>-0.15</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.30</offset>
</li>
<li>
<capacity>Moving</capacity>
<offset>-0.30</offset>
</li>
</capMods>
</li>
</stages>
</HediffDef>
<HediffDef>
<defName>VirusPerma</defName>
<hediffClass>Hediff_Injury</hediffClass>
<tendable>false</tendable>
<displayWound>true</displayWound>
<chanceToCauseNoPain>1.0</chanceToCauseNoPain>
<description>Viral damage.</description>
<label>viral damage</label>
<comps>
<li Class="HediffCompProperties_GetsPermanent">
<permanentLabel>permanent viral damage</permanentLabel>
<instantlyPermanentLabel>permanent viral damage</instantlyPermanentLabel>
</li>
</comps>
<injuryProps>
<painPerSeverity>0.0</painPerSeverity>
<averagePainPerSeverityPermanent>0.0</averagePainPerSeverityPermanent>
<destroyedLabel>Destroyed by disease</destroyedLabel>
<destroyedOutLabel>Destroyed by disease</destroyedOutLabel>
</injuryProps>
</HediffDef>
<HediffDef ParentName="AddedBodyPartBase">
<defName>PegArm</defName>
<label>peg arm</label>
<labelNoun>a peg arm</labelNoun>
<description>A peg arm.</description>
<addedPartProps>
<solid>true</solid>
<partEfficiency>0.00</partEfficiency>
<betterThanNatural>false</betterThanNatural>
</addedPartProps>
<spawnThingOnRemoved>WoodLog</spawnThingOnRemoved>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_Other.xml
|
XML
|
mit
| 2,817
|
<?xml version="1.0" encoding="utf-8" ?>
<!--all pregnancies-->
<Defs>
<HediffDef Name="RJW_pregnancy_template" Abstract="True">
<label>Pregnant</label>
<description>Baby in the oven.</description>
<defaultLabelColor>(1, 0.41, 0.81)</defaultLabelColor>
<initialSeverity>0.001</initialSeverity>
<isBad>false</isBad>
<stages>
<li>
<label>early-stage</label>
<vomitMtbDays>2</vomitMtbDays>
<hungerRateFactorOffset>0.25</hungerRateFactorOffset>
</li>
<li>
<label>middle-stage</label>
<minSeverity>0.333</minSeverity>
<vomitMtbDays>4</vomitMtbDays>
<hungerRateFactorOffset>0.3</hungerRateFactorOffset>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.15</offset>
</li>
</capMods>
</li>
<li>
<label>late-stage</label>
<minSeverity>0.666</minSeverity>
<vomitMtbDays>6</vomitMtbDays>
<hungerRateFactorOffset>0.3</hungerRateFactorOffset>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.30</offset>
</li>
</capMods>
</li>
<li>
<label>having contractions</label>
<minSeverity>0.99</minSeverity>
<painOffset>0.5</painOffset>
<capMods>
<li>
<capacity>Moving</capacity>
<setMax>0.0</setMax>
</li>
</capMods>
</li>
</stages>
</HediffDef>
<HediffDef ParentName="RJW_pregnancy_template">
<defName>RJW_pregnancy</defName>
<hediffClass>rjw.Hediff_BasePregnancy</hediffClass>
</HediffDef>
<HediffDef ParentName="RJW_pregnancy_template">
<defName>RJW_pregnancy_beast</defName>
<hediffClass>rjw.Hediff_BestialPregnancy</hediffClass>
</HediffDef>
<HediffDef ParentName="RJW_pregnancy_template">
<defName>RJW_pregnancy_mech</defName>
<hediffClass>rjw.Hediff_MechanoidPregnancy</hediffClass>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_Pregnancy.xml
|
XML
|
mit
| 1,808
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<rjw.HediffDef_PartBase Name="RJW_PrivatePartBase" Abstract="True">
<DefaultBodyPartList>
<!--
<li>Head</li>
<li>Genitals</li>
<li>Chest</li>
<li>Anus</li>
-->
</DefaultBodyPartList>
<!-- <everVisible>true</everVisible> -->
<FluidType></FluidType>
<!-- string, make into something else, someday, maybe-->
<isBad>false</isBad>
<comps>
<li Class="rjw.CompProperties_HediffBodyPart" />
</comps>
<priceImpact>false</priceImpact>
</rjw.HediffDef_PartBase>
<!-- natural parts (purist love) -->
<rjw.HediffDef_PartBase ParentName="RJW_PrivatePartBase" Name="NaturalPrivatePartBase" Abstract="True">
<hediffClass>rjw.Hediff_PartBaseNatural</hediffClass>
<defaultLabelColor>(0.5, 0.8, 0.5)</defaultLabelColor>
<addedPartProps>
<solid>false</solid>
<partEfficiency>1.0</partEfficiency>
</addedPartProps>
</rjw.HediffDef_PartBase>
<!-- Humanlikes should generally spawn with severity between 0 and 1. The higher sizes are for growth or ultra endowed races. -->
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartBase" Name="NaturalPrivatePartPenis" Abstract="True">
<FluidType>Cum</FluidType>
<DefaultBodyPart>Genitals</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
</li>
<li>
<label>Small</label>
<minSeverity>0.20</minSeverity>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
</li>
<li>
<label>Large</label>
<minSeverity>0.60</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.02</offset>
</li>
</capMods>
</li>
<li>
<label>Huge</label>
<minSeverity>0.80</minSeverity>
<capMods>
<li>
<!-- A few inches extra isn't really going to make a difference, but it's funny so... -->
<capacity>Moving</capacity>
<offset>-0.05</offset>
</li>
</capMods>
</li>
<!-- Humanlikes should generally spawn with severity between 0 and 1. The higher sizes are for growth or ultra endowed races. -->
<li>
<label>Towering</label>
<minSeverity>1.01</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.10</offset>
</li>
</capMods>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<density>1.0</density>
<lengths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<!-- 14.0 is average -->
<li>18.0</li>
<li>25.0</li>
<li>35.0</li>
<!-- World record (Cabrera doesn't count). -->
<!-- Can always add more later. -->
</lengths>
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<!-- 12.0 is average -->
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartBase" Name="NaturalPrivatePartVagina" Abstract="True">
<FluidType>Cum</FluidType>
<DefaultBodyPart>Genitals</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
</li>
<li>
<label>Tight</label>
<minSeverity>0.20</minSeverity>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
</li>
<li>
<label>Accommodating</label>
<minSeverity>0.60</minSeverity>
</li>
<li>
<label>Cavernous</label>
<minSeverity>0.80</minSeverity>
</li>
<li>
<label>Abyssal</label>
<minSeverity>1.01</minSeverity>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale> <!-- rescales parts sizes based on bodysize of initial owner race -->
<!-- Matches with penis sizes. -->
<lengths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<!-- 14.0 is average -->
<li>18.0</li>
<li>25.0</li>
<li>35.0</li>
<!-- World record (Cabrera doesn't count). -->
</lengths>
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<!-- 12.0 is average -->
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
<li Class="rjw.PartProps">
<props>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartBase" Name="NaturalPrivatePartAnus" Abstract="True">
<FluidType></FluidType>
<DefaultBodyPart>Anus</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
</li>
<li>
<label>Tight</label>
<minSeverity>0.20</minSeverity>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
</li>
<li>
<label>Accommodating</label>
<minSeverity>0.60</minSeverity>
</li>
<li>
<label>Cavernous</label>
<minSeverity>0.80</minSeverity>
</li>
<li>
<label>Abyssal</label>
<minSeverity>1.01</minSeverity>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<!-- Matches with penis sizes. -->
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<!-- 12.0 is average -->
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartBase" Name="NaturalPrivatePartBreast" Abstract="True">
<FluidType>Milk</FluidType>
<DefaultBodyPart>Chest</DefaultBodyPart>
<stages>
<li>
<!-- Male breast stage-->
<label>Nipples</label>
<minSeverity>0.01</minSeverity>
</li>
<li>
<label>Tiny</label>
<minSeverity>0.02</minSeverity>
</li>
<li>
<label>Small</label>
<minSeverity>0.20</minSeverity>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.01</offset>
</li>
</capMods>
</li>
<li>
<label>Large</label>
<minSeverity>0.60</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.025</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.01</offset>
</li>
</capMods>
</li>
<li>
<label>Huge</label>
<minSeverity>0.80</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.05</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.02</offset>
</li>
</capMods>
</li>
<li>
<label>Enormous</label>
<minSeverity>1.00</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.10</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.04</offset>
</li>
</capMods>
</li>
<!-- Humanlikes should generally spawn with severity between 0 and 1. The higher sizes are for growth or ultra endowed races. -->
<li>
<label>Massive</label>
<minSeverity>1.2</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.15</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.08</offset>
</li>
</capMods>
</li>
<li>
<label>Gargantuan</label>
<minSeverity>1.4</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.25</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.12</offset>
</li>
</capMods>
</li>
<li>
<label>Colossal</label>
<minSeverity>1.6</minSeverity>
<!-- Norma Stitz is obviously not crippled, but she's not winning any races either. -->
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.40</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.20</offset>
</li>
</capMods>
</li>
<li>
<label>Titanic</label>
<minSeverity>1.8</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.65</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.32</offset>
</li>
</capMods>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<!-- Human standard would be 1.0. Leave out for no weight display. -->
<density>1.0</density>
<cupSizes>
<li>0</li>
<li>1</li>
<li>2</li>
<li>4</li>
<!-- DD is average -->
<li>7</li>
<li>11</li>
<li>15</li>
<li>19</li>
<li>25</li>
<li>31</li>
<!-- World record is 2x this. Can always add more later. -->
</cupSizes>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<!-- artificial parts (transhumanist love) -->
<rjw.HediffDef_PartBase ParentName="RJW_PrivatePartBase" Name="ArtificialPrivatePartBase" Abstract="True">
<hediffClass>rjw.Hediff_PartBaseArtifical</hediffClass>
<defaultLabelColor>(0.5, 0.5, 0.9)</defaultLabelColor>
<addedPartProps>
<solid>true</solid>
<partEfficiency>1.0</partEfficiency>
</addedPartProps>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartBase" Name="ArtificialPrivatePartLotech" Abstract="True">
<addedPartProps>
<betterThanNatural>false</betterThanNatural>
</addedPartProps>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartBase" Name="ArtificialPrivatePartHitech" Abstract="True">
<addedPartProps>
<betterThanNatural>true</betterThanNatural>
</addedPartProps>
<priceImpact>true</priceImpact>
</rjw.HediffDef_PartBase>
<!-- Placeholder hediffs for unsupported pawns? -->
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>GenericPenis</defName>
<label>generic penis</label>
<labelNoun>a penis</labelNoun>
<description>A penis. Generic placeholder part for unsuported race.</description>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartVagina">
<defName>GenericVagina</defName>
<label>generic vagina</label>
<labelNoun>a vagina</labelNoun>
<description>A vagina. Generic placeholder part for unsuported race.</description>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartAnus">
<defName>GenericAnus</defName>
<label>generic anus</label>
<labelNoun>an anus</labelNoun>
<description>An anus. Generic placeholder part for unsuported race.</description>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartBreast">
<defName>GenericBreasts</defName>
<label>generic breasts</label>
<labelNoun>breasts</labelNoun>
<description>A pair of breasts. Generic placeholder part for unsuported race.</description>
</rjw.HediffDef_PartBase>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_PrivateParts/Hediffs_PrivateParts.xml
|
XML
|
mit
| 10,835
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>HorsePenis</defName>
<label>equine penis</label>
<labelNoun>an equine penis</labelNoun>
<description>A large horse penis. Flares out during sex.</description>
<descriptionHyperlinks><ThingDef>HorsePenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>HorsePenis</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Flared</li>
<li>Sheathed</li>
<li>Long</li>
<li>Girthy</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartVagina">
<defName>HorseVagina</defName>
<label>equine vagina</label>
<labelNoun>an equine vagina</labelNoun>
<description>A mare vagina.</description>
<descriptionHyperlinks><ThingDef>HorseVagina</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>HorseVagina</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Loose</li>
<li>Deep</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>CatPenis</defName>
<label>feline penis</label>
<labelNoun>a feline penis</labelNoun>
<description>A spine-covered feline penis.</description>
<descriptionHyperlinks><ThingDef>CatPenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>CatPenis</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Barbed</li>
<li>Sheathed</li>
<li>Tapered</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartVagina">
<defName>CatVagina</defName>
<label>feline vagina</label>
<labelNoun>a feline vagina</labelNoun>
<description>A feline vagina.</description>
<descriptionHyperlinks><ThingDef>CatVagina</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>CatVagina</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Tight</li>
<li>Deep</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>DogPenis</defName>
<label>canine penis</label>
<labelNoun>a dog penis</labelNoun>
<description>A bright red dog penis. The knot will expand during sex, locking its lover to their partner for a long time.</description>
<descriptionHyperlinks><ThingDef>DogPenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>DogPenis</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Knotted</li>
<li>Sheathed</li>
<li>Tapered</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartVagina">
<defName>DogVagina</defName>
<label>canine vagina</label>
<labelNoun>a dog vagina</labelNoun>
<description>A dog vagina.</description>
<descriptionHyperlinks><ThingDef>DogVagina</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>DogVagina</spawnThingOnRemoved>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>DragonPenis</defName>
<label>dragon penis</label>
<labelNoun>a dragon penis</labelNoun>
<description>A dragon penis. Has a knot that expands similarly to a dog's penis, but the ribbings on both sides takes its lover to greater heights of pleasure.</description>
<descriptionHyperlinks><ThingDef>DragonPenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>DragonPenis</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Ridged</li>
<li>Girthy</li>
<li>Knotted</li>
<li>Internal</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartVagina">
<defName>DragonVagina</defName>
<label>dragon vagina</label>
<labelNoun>a dragon vagina</labelNoun>
<description>A dragon vagina. Has a similar texture to their outer hide.</description>
<descriptionHyperlinks><ThingDef>DragonVagina</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>DragonVagina</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Loose</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>RaccoonPenis</defName>
<label>procyonine penis</label>
<labelNoun>a procyonine penis</labelNoun>
<description>A raccoon penis.</description>
<descriptionHyperlinks><ThingDef>RaccoonPenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>RaccoonPenis</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Long</li>
<li>Thin</li>
<li>Rigid</li>
<li>Sheathed</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>HemiPenis</defName>
<label>hemipenis</label>
<labelNoun>a hemipenis</labelNoun>
<description>Twice the members for double the fun.</description>
<descriptionHyperlinks><ThingDef>HemiPenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>HemiPenis</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Barbed</li>
<li>Tapered</li>
<li>Multiple</li>
<li>Small</li>
<li>Internal</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>CrocodilianPenis</defName>
<label>crocodilian penis</label>
<labelNoun>a crocodilian penis</labelNoun>
<description>A crocodilian penis. Large and permenantly erect.</description>
<descriptionHyperlinks><ThingDef>CrocodilianPenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>CrocodilianPenis</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Rigid</li>
<li>Internal</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartBreast">
<DefaultBodyPartList>
<li>Torso</li>
</DefaultBodyPartList>
<DefaultBodyPart>Torso</DefaultBodyPart>
<defName>UdderBreasts</defName>
<label>udder</label>
<labelNoun>an udders</labelNoun>
<description>A animal like "breasts" with 4 nipples.</description>
<descriptionHyperlinks><ThingDef>UdderBreasts</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>UdderBreasts</spawnThingOnRemoved>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartVagina">
<defName>NarrowVagina</defName>
<label>narrow vagina</label>
<labelNoun>a narrow vagina</labelNoun>
<description>A tight, narrow vagina.</description>
<descriptionHyperlinks><ThingDef>NarrowVagina</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>NarrowVagina</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Tight</li>
<li>Deep</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>NeedlePenis</defName>
<label>needle penis</label>
<labelNoun>a needle penis</labelNoun>
<description>A small and thin penis.</description>
<descriptionHyperlinks><ThingDef>NeedlePenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>NeedlePenis</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Sheathed</li>
<li>Long</li>
<li>Thin</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartVagina">
<defName>RodentVagina</defName>
<label>rodent vagina</label>
<labelNoun>a rodent vagina</labelNoun>
<description>A rodent vagina.</description>
<descriptionHyperlinks><ThingDef>RodentVagina</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>RodentVagina</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Tight</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>RodentPenis</defName>
<label>rodent penis</label>
<labelNoun>a rodent penis</labelNoun>
<description>A rodent penis.</description>
<descriptionHyperlinks><ThingDef>RodentPenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>RodentPenis</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Sheathed</li>
<li>Small</li>
<li>Tapered</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>CloacalPenis</defName>
<label>cloacal penis</label>
<labelNoun>a cloacal penis</labelNoun>
<description>A cloacal penis.</description>
<descriptionHyperlinks><ThingDef>CloacalPenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>CloacalPenis</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Internal</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartVagina">
<defName>CloacalVagina</defName>
<label>cloacal vagina</label>
<labelNoun>a cloacal vagina</labelNoun>
<description>A cloacal vagina.</description>
<descriptionHyperlinks><ThingDef>CloacalVagina</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>CloacalVagina</spawnThingOnRemoved>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartAnus">
<defName>CloacalAnus</defName>
<label>cloacal anus</label>
<labelNoun>cloacal anus</labelNoun>
<description>A cloacal anus.</description>
<descriptionHyperlinks><ThingDef>CloacalAnus</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>CloacalAnus</spawnThingOnRemoved>
</rjw.HediffDef_PartBase>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_PrivateParts/Hediffs_PrivateParts_Animal.xml
|
XML
|
mit
| 10,131
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!-- Demon privates -->
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>DemonTentaclePenis</defName>
<label>demon tentacles</label>
<labelNoun>demon tentacles</labelNoun>
<description>Tentacles capable of reaching corners of the body you never thought possible.</description>
<descriptionHyperlinks><ThingDef>DemonTentaclePenis</ThingDef></descriptionHyperlinks>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Barbed</li>
<li>Prehensile</li>
<li>Thin</li>
<li>Internal</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>DemonPenis</defName>
<label>demon penis</label>
<labelNoun>a demon penis</labelNoun>
<description>A large, daunting mass that can cause its lovers to succumb to debauchery.</description>
<descriptionHyperlinks><ThingDef>DemonPenis</ThingDef></descriptionHyperlinks>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Ridged</li>
<li>Barbed</li>
<li>Humanlike</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartVagina">
<defName>DemonVagina</defName>
<label>demon vagina</label>
<labelNoun>a demon vagina</labelNoun>
<description>A tight vagina that can send its lovers to heaven.</description>
<descriptionHyperlinks><ThingDef>DemonVagina</ThingDef></descriptionHyperlinks>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Ridged</li>
<li>Tight</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartAnus">
<defName>DemonAnus</defName>
<label>demon anus</label>
<labelNoun>a demon anus</labelNoun>
<description>A demon anus.</description>
<descriptionHyperlinks><ThingDef>DemonAnus</ThingDef></descriptionHyperlinks>
</rjw.HediffDef_PartBase>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_PrivateParts/Hediffs_PrivateParts_Demon.xml
|
XML
|
mit
| 2,021
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!-- Regular privates -->
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>Penis</defName>
<label>penis</label>
<labelNoun>a penis</labelNoun>
<description>A penis.</description>
<descriptionHyperlinks><ThingDef>Penis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>Penis</spawnThingOnRemoved>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartVagina">
<defName>Vagina</defName>
<label>vagina</label>
<labelNoun>a vagina</labelNoun>
<description>A vagina.</description>
<descriptionHyperlinks><ThingDef>Vagina</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>Vagina</spawnThingOnRemoved>
</rjw.HediffDef_PartBase>
<!-- Natural anuses -->
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartAnus">
<defName>Anus</defName>
<label>anus</label>
<labelNoun>an anus</labelNoun>
<description>A anus.</description>
<descriptionHyperlinks><ThingDef>Anus</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>Anus</spawnThingOnRemoved>
</rjw.HediffDef_PartBase>
<!-- Natural Breasts -->
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartBreast">
<defName>Breasts</defName>
<label>breasts</label>
<labelNoun>a pair of breasts</labelNoun>
<description>A pair of breasts.</description>
<descriptionHyperlinks><ThingDef>Breasts</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>Breasts</spawnThingOnRemoved>
</rjw.HediffDef_PartBase>
<!-- Natural Breasts or rather lack of -->
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartBase">
<defName>FeaturelessChest</defName>
<label>featureless chest</label>
<labelNoun>a featureless chest</labelNoun>
<description>a flat chest without any nipples where there should be.</description>
<descriptionHyperlinks><ThingDef>FeaturelessChest</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>FeaturelessChest</spawnThingOnRemoved>
</rjw.HediffDef_PartBase>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_PrivateParts/Hediffs_PrivateParts_Human.xml
|
XML
|
mit
| 2,006
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!-- Simple prosthetic privates -->
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartLotech">
<hediffClass>Hediff_Implant</hediffClass> <!-- do not count it as Hediff_AddedPart for transhumanist/prostophobe -->
<defName>PegDick</defName>
<label>peg dick</label>
<labelNoun>a peg dick</labelNoun>
<description>A simple, static member.</description>
<descriptionHyperlinks><ThingDef>PegDick</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>PegDick</spawnThingOnRemoved>
<DefaultBodyPart>Genitals</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.01</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<setMax>0</setMax>
</li>
</capMods>
</li>
<li>
<label>Small</label>
<minSeverity>0.20</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.03</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<setMax>0</setMax>
</li>
</capMods>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.06</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<setMax>0</setMax>
</li>
</capMods>
</li>
<li>
<label>Large</label>
<minSeverity>0.60</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.09</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0</offset>
</li>
</capMods>
</li>
<li>
<label>Huge</label>
<minSeverity>0.80</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.05</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<setMax>0</setMax>
</li>
</capMods>
</li>
<li>
<label>Towering</label>
<minSeverity>1.01</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.10</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<setMax>0</setMax>
</li>
</capMods>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
<li>Solid</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<density>1.0</density>
<lengths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>18.0</li>
<li>25.0</li>
<li>35.0</li>
</lengths>
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartLotech">
<defName>HydraulicPenis</defName>
<label>hydraulic penis</label>
<labelNoun>a hydraulic penis</labelNoun>
<description>Simulating a normal penis, it can enlarge itself with hydraulics.</description>
<descriptionHyperlinks><ThingDef>HydraulicPenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>HydraulicPenis</spawnThingOnRemoved>
<FluidType>Cum</FluidType>
<DefaultBodyPart>Genitals</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.01</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<offset>-0.25</offset>
</li>
</capMods>
</li>
<li>
<label>Small</label>
<minSeverity>0.20</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.03</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<offset>-0.25</offset>
</li>
</capMods>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.06</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<offset>-0.25</offset>
</li>
</capMods>
</li>
<li>
<label>Large</label>
<minSeverity>0.60</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.09</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<offset>-0.25</offset>
</li>
</capMods>
</li>
<li>
<label>Huge</label>
<minSeverity>0.80</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.05</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<offset>-0.25</offset>
</li>
</capMods>
</li>
<li>
<label>Towering</label>
<minSeverity>1.01</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.10</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<setMax>-0.25</setMax>
</li>
</capMods>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
<li>Solid</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<density>1.0</density>
<lengths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>18.0</li>
<li>25.0</li>
<li>35.0</li>
</lengths>
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartLotech">
<defName>HydraulicVagina</defName>
<label>hydraulic vagina</label>
<labelNoun>a hydraulic vagina</labelNoun>
<description>It uses simple hydraulics to simulate the tightness of a regular vagina.</description>
<descriptionHyperlinks><ThingDef>HydraulicVagina</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>HydraulicVagina</spawnThingOnRemoved>
<FluidType>Cum</FluidType>
<DefaultBodyPart>Genitals</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.06</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<offset>-0.25</offset>
</li>
</capMods>
</li>
<li>
<label>Tight</label>
<minSeverity>0.20</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.06</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<offset>-0.25</offset>
</li>
</capMods>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.06</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<offset>-0.25</offset>
</li>
</capMods>
</li>
<li>
<label>Accommodating</label>
<minSeverity>0.60</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.06</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<offset>-0.25</offset>
</li>
</capMods>
</li>
<li>
<label>Cavernous</label>
<minSeverity>0.80</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.07</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<offset>-0.25</offset>
</li>
</capMods>
</li>
<li>
<label>Abyssal</label>
<minSeverity>1.01</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.08</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<setMax>-0.25</setMax>
</li>
</capMods>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
<li>Solid</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<lengths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>18.0</li>
<li>25.0</li>
<li>35.0</li>
</lengths>
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartLotech">
<defName>HydraulicAnus</defName>
<label>hydraulic anus</label>
<labelNoun>a hydraulic anus</labelNoun>
<description>An anus that uses simple hydraulics to tighten.</description>
<descriptionHyperlinks><ThingDef>HydraulicAnus</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>HydraulicAnus</spawnThingOnRemoved>
<DefaultBodyPart>Anus</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.06</offset>
</li>
</capMods>
</li>
<li>
<label>Tight</label>
<minSeverity>0.20</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.06</offset>
</li>
</capMods>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.06</offset>
</li>
</capMods>
</li>
<li>
<label>Accommodating</label>
<minSeverity>0.60</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.06</offset>
</li>
</capMods>
</li>
<li>
<label>Cavernous</label>
<minSeverity>0.80</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.07</offset>
</li>
</capMods>
</li>
<li>
<label>Abyssal</label>
<minSeverity>1.01</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.08</offset>
</li>
<li>
<capacity>RJW_Fertility</capacity>
<setMax>-0.25</setMax>
</li>
</capMods>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
<li>Solid</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartLotech">
<defName>HydraulicBreasts</defName>
<label>hydraulic breasts</label>
<labelNoun>a pair of hydraulic breasts</labelNoun>
<description>A pair obviously unnatural implants.</description>
<descriptionHyperlinks><ThingDef>HydraulicBreasts</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>HydraulicBreasts</spawnThingOnRemoved>
<DefaultBodyPart>Chest</DefaultBodyPart>
<stages>
<li>
<label>Nipples</label>
<minSeverity>0.01</minSeverity>
<capMods>
<li>
<capacity>Manipulation</capacity>
<offset>-0.01</offset>
</li>
</capMods>
</li>
<li>
<label>Tiny</label>
<minSeverity>0.02</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.01</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.01</offset>
</li>
</capMods>
</li>
<li>
<label>Small</label>
<minSeverity>0.20</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.01</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.01</offset>
</li>
</capMods>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.015</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.015</offset>
</li>
</capMods>
</li>
<li>
<label>Large</label>
<minSeverity>0.60</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.02</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.02</offset>
</li>
</capMods>
</li>
<li>
<label>Huge</label>
<minSeverity>0.80</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.06</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.06</offset>
</li>
</capMods>
</li>
<li>
<label>Enormous</label>
<minSeverity>1.0</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.1</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.1</offset>
</li>
</capMods>
</li>
<li>
<label>Massive</label>
<minSeverity>1.2</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.2</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.2</offset>
</li>
</capMods>
</li>
<li>
<label>Gargantuan</label>
<minSeverity>1.4</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.4</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.4</offset>
</li>
</capMods>
</li>
<li>
<label>Colossal</label>
<minSeverity>1.6</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.6</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.6</offset>
</li>
</capMods>
</li>
<li>
<label>Titanic</label>
<minSeverity>1.8</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-1.0</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-1.0</offset>
</li>
</capMods>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
<li>Solid</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<density>1.0</density>
<cupSizes>
<li>0</li>
<li>1</li>
<li>2</li>
<li>4</li>
<li>7</li>
<li>11</li>
<li>15</li>
<li>19</li>
<li>25</li>
<li>31</li>
</cupSizes>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<!-- Bionic privates -->
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartHitech">
<defName>BionicPenis</defName>
<label>bionic penis</label>
<labelNoun>a bionic penis</labelNoun>
<description>An advanced artificial penis. It uses fine-tuned pressure sensors
and PID control loops to analyze its lover's contractions. It can expand, contract and even vibrate
to adapt to its lover's preferences.</description>
<descriptionHyperlinks><ThingDef>BionicPenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>BionicPenis</spawnThingOnRemoved>
<FluidType>Cum</FluidType>
<DefaultBodyPart>Genitals</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
</li>
<li>
<label>Small</label>
<minSeverity>0.20</minSeverity>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
</li>
<li>
<label>Large</label>
<minSeverity>0.60</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.01</offset>
</li>
</capMods>
</li>
<li>
<label>Huge</label>
<minSeverity>0.80</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.05</offset>
</li>
</capMods>
</li>
<li>
<label>Towering</label>
<minSeverity>1.01</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.10</offset>
</li>
</capMods>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
<li>Solid</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<density>1.0</density>
<lengths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>18.0</li>
<li>25.0</li>
<li>35.0</li>
</lengths>
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartHitech">
<defName>BionicVagina</defName>
<label>bionic vagina</label>
<labelNoun>a bionic vagina</labelNoun>
<description>An advanced bionic vagina. It uses internal pressure sensors to accommodate its user's size, speed.</description>
<descriptionHyperlinks><ThingDef>BionicVagina</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>BionicVagina</spawnThingOnRemoved>
<FluidType>Cum</FluidType>
<DefaultBodyPart>Genitals</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
</li>
<li>
<label>Tight</label>
<minSeverity>0.20</minSeverity>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
</li>
<li>
<label>Accommodating</label>
<minSeverity>0.60</minSeverity>
</li>
<li>
<label>Cavernous</label>
<minSeverity>0.80</minSeverity>
</li>
<li>
<label>Abyssal</label>
<minSeverity>1.01</minSeverity>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<lengths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>18.0</li>
<li>25.0</li>
<li>35.0</li>
</lengths>
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartHitech">
<defName>BionicAnus</defName>
<label>bionic anus</label>
<labelNoun>an bionic anus</labelNoun>
<description>An advanced bionic anus.</description>
<descriptionHyperlinks><ThingDef>BionicAnus</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>BionicAnus</spawnThingOnRemoved>
<DefaultBodyPart>Anus</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
</li>
<li>
<label>Tight</label>
<minSeverity>0.20</minSeverity>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
</li>
<li>
<label>Accommodating</label>
<minSeverity>0.60</minSeverity>
</li>
<li>
<label>Cavernous</label>
<minSeverity>0.80</minSeverity>
</li>
<li>
<label>Abyssal</label>
<minSeverity>1.01</minSeverity>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartHitech">
<defName>BionicBreasts</defName>
<label>bionic breasts</label>
<labelNoun>a bionic breasts</labelNoun>
<description>An advanced bionic breasts.</description>
<descriptionHyperlinks><ThingDef>BionicBreasts</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>BionicBreasts</spawnThingOnRemoved>
<DefaultBodyPart>Chest</DefaultBodyPart>
<stages>
<li>
<label>Nipples</label>
<minSeverity>0.01</minSeverity>
</li>
<li>
<label>Tiny</label>
<minSeverity>0.02</minSeverity>
</li>
<li>
<label>Small</label>
<minSeverity>0.20</minSeverity>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
</li>
<li>
<label>Large</label>
<minSeverity>0.60</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.01</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.01</offset>
</li>
</capMods>
</li>
<li>
<label>Huge</label>
<minSeverity>0.80</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.025</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.02</offset>
</li>
</capMods>
</li>
<li>
<label>Enormous</label>
<minSeverity>1.0</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.05</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.04</offset>
</li>
</capMods>
</li>
<li>
<label>Massive</label>
<minSeverity>1.2</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.1</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.06</offset>
</li>
</capMods>
</li>
<li>
<label>Gargantuan</label>
<minSeverity>1.4</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.15</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.08</offset>
</li>
</capMods>
</li>
<li>
<label>Colossal</label>
<minSeverity>1.6</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.25</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.14</offset>
</li>
</capMods>
</li>
<li>
<label>Titanic</label>
<minSeverity>1.8</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.40</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.24</offset>
</li>
</capMods>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<density>1.0</density>
<cupSizes>
<li>0</li>
<li>1</li>
<li>2</li>
<li>4</li>
<li>7</li>
<li>11</li>
<li>15</li>
<li>19</li>
<li>25</li>
<li>31</li>
</cupSizes>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<!-- Archotech -->
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartHitech">
<defName>ArchotechPenis</defName>
<label>archotech penis</label>
<description>An archotech penis.</description>
<descriptionHyperlinks><ThingDef>ArchotechPenis</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>ArchotechPenis</spawnThingOnRemoved>
<FluidType>Cum</FluidType>
<DefaultBodyPart>Genitals</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Small</label>
<minSeverity>0.20</minSeverity>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Large</label>
<minSeverity>0.60</minSeverity>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Huge</label>
<minSeverity>0.80</minSeverity>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Towering</label>
<minSeverity>1.01</minSeverity>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
<li>Glowing</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<density>1.0</density>
<lengths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>18.0</li>
<li>25.0</li>
<li>35.0</li>
</lengths>
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartHitech">
<defName>ArchotechVagina</defName>
<label>archotech vagina</label>
<description>An archotech vagina.</description>
<descriptionHyperlinks><ThingDef>ArchotechVagina</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>ArchotechVagina</spawnThingOnRemoved>
<FluidType>Cum</FluidType>
<DefaultBodyPart>Genitals</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Tight</label>
<minSeverity>0.20</minSeverity>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Accommodating</label>
<minSeverity>0.60</minSeverity>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Cavernous</label>
<minSeverity>0.80</minSeverity>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Abyssal</label>
<minSeverity>1.01</minSeverity>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
<li>Glowing</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<lengths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>18.0</li>
<li>25.0</li>
<li>35.0</li>
</lengths>
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartHitech">
<defName>ArchotechAnus</defName>
<label>archotech anus</label>
<description>An archotech anus.</description>
<descriptionHyperlinks><ThingDef>ArchotechAnus</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>ArchotechAnus</spawnThingOnRemoved>
<DefaultBodyPart>Anus</DefaultBodyPart>
<stages>
<li>
<label>Micro</label>
<minSeverity>0.01</minSeverity>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>Metabolism</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Tight</label>
<minSeverity>0.20</minSeverity>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>Metabolism</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Average</label>
<minSeverity>0.40</minSeverity>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>Metabolism</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Accommodating</label>
<minSeverity>0.60</minSeverity>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>Metabolism</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Cavernous</label>
<minSeverity>0.80</minSeverity>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>Metabolism</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
<li>
<label>Abyssal</label>
<minSeverity>1.01</minSeverity>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>0.25</offset>
</li>
<li>
<capacity>Metabolism</capacity>
<offset>0.05</offset>
</li>
</capMods>
<statOffsets>
<ImmunityGainSpeed>0.05</ImmunityGainSpeed>
<ToxicSensitivity>-0.05</ToxicSensitivity>
</statOffsets>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
<li>Glowing</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<girths>
<li>0</li>
<li>5.0</li>
<li>10.0</li>
<li>13.0</li>
<li>17.0</li>
<li>21.0</li>
</girths>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="ArtificialPrivatePartHitech">
<defName>ArchotechBreasts</defName>
<label>archotech breasts</label>
<description>A pair of archotech breasts.</description>
<descriptionHyperlinks><ThingDef>ArchotechBreasts</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>ArchotechBreasts</spawnThingOnRemoved>
<FluidType>Milk</FluidType>
<DefaultBodyPart>Chest</DefaultBodyPart>
<stages>
<li>
<label>Nipples</label>
<minSeverity>0.01</minSeverity>
<capMods>
<li>
<capacity>BloodPumping</capacity>
<offset>0.2</offset>
</li>
</capMods>
</li>
<li>
<label>Tiny</label>
<minSeverity>0.02</minSeverity>
<capMods>
<li>
<capacity>BloodPumping</capacity>
<offset>0.2</offset>
</li>
</capMods>
</li>
<li>
<label>Small</label>
<minSeverity>0.2</minSeverity>
<capMods>
<li>
<capacity>BloodPumping</capacity>
<offset>0.2</offset>
</li>
</capMods>
</li>
<li>
<label>Average</label>
<minSeverity>0.4</minSeverity>
<capMods>
<li>
<capacity>BloodPumping</capacity>
<offset>0.2</offset>
</li>
</capMods>
</li>
<li>
<label>Large</label>
<minSeverity>0.6</minSeverity>
<capMods>
<li>
<capacity>BloodPumping</capacity>
<offset>0.2</offset>
</li>
</capMods>
</li>
<li>
<label>Huge</label>
<minSeverity>0.8</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.01</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.01</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.2</offset>
</li>
</capMods>
</li>
<li>
<label>Enormous</label>
<minSeverity>1.0</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.02</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.02</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.2</offset>
</li>
</capMods>
</li>
<li>
<label>Massive</label>
<minSeverity>1.2</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.03</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.03</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.2</offset>
</li>
</capMods>
</li>
<li>
<label>Gargantuan</label>
<minSeverity>1.4</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.04</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.04</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.2</offset>
</li>
</capMods>
</li>
<li>
<label>Colossal</label>
<minSeverity>1.6</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.05</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.05</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.2</offset>
</li>
</capMods>
</li>
<li>
<label>Titanic</label>
<minSeverity>1.8</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<offset>-0.06</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.06</offset>
</li>
<li>
<capacity>BloodPumping</capacity>
<offset>0.2</offset>
</li>
</capMods>
</li>
</stages>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Artificial</li>
<li>Glowing</li>
</props>
</li>
<li Class="rjw.PartSizeExtension">
<bodysizescale>true</bodysizescale>
<density>1.0</density>
<cupSizes>
<li>0</li>
<li>1</li>
<li>2</li>
<li>4</li>
<li>7</li>
<li>11</li>
<li>15</li>
<li>19</li>
<li>25</li>
<li>31</li>
</cupSizes>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_PrivateParts/Hediffs_PrivateParts_Implants.xml
|
XML
|
mit
| 37,055
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!-- Insect privates -->
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartVagina">
<defName>OvipositorF</defName>
<label>ovipositor (Female)</label>
<labelNoun>an ovipositor</labelNoun>
<description>An ovipositor. Lays eggs inside host.</description>
<descriptionHyperlinks><ThingDef>OvipositorF</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>OvipositorF</spawnThingOnRemoved>
<produceEggs>true</produceEggs>
<!-- time to produce new egg -->
<minEggTick>12000</minEggTick>
<maxEggTick>60000</maxEggTick>
<FluidType>InsectJelly</FluidType>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Internal</li>
<li>Rigid</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>OvipositorM</defName>
<label>ovipositor (Male)</label>
<labelNoun>an ovipositor</labelNoun>
<description>An ovipositor. Fertilizes eggs inside host.</description>
<descriptionHyperlinks><ThingDef>OvipositorM</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>OvipositorM</spawnThingOnRemoved>
<FluidType>InsectJelly</FluidType>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Internal</li>
<li>Barbed</li>
<li>Ridged</li>
<li>Rigid</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartAnus">
<defName>InsectAnus</defName>
<label>insect anus</label>
<labelNoun>an insect anus</labelNoun>
<description>An insect anus.</description>
<descriptionHyperlinks><ThingDef>InsectAnus</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>InsectAnus</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Rigid</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_PrivateParts/Hediffs_PrivateParts_Insect.xml
|
XML
|
mit
| 1,930
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!-- Slime privates -->
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartPenis">
<defName>SlimeTentacles</defName>
<label>slime tentacles</label>
<labelNoun>slime tentacles</labelNoun>
<description>Slick, translucent tentacles that can conform into any shape desired.</description>
<descriptionHyperlinks><ThingDef>SlimeGlob</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>SlimeGlob</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Tapered</li>
<li>Prehensile</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartVagina">
<defName>SlimeVagina</defName>
<label>slime vagina</label>
<labelNoun>slime vagina</labelNoun>
<description>A slick, translucent vagina that can grow or shrink to accommodate any penis.</description>
<descriptionHyperlinks><ThingDef>SlimeGlob</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>SlimeGlob</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Deep</li>
<li>Loose</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartAnus">
<defName>SlimeAnus</defName>
<label>slime anus</label>
<labelNoun>a slime anus</labelNoun>
<description>A slick, translucent anus that can tighten and conform to fit anything.</description>
<descriptionHyperlinks><ThingDef>SlimeGlob</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>SlimeGlob</spawnThingOnRemoved>
<modExtensions>
<li Class="rjw.PartProps">
<props>
<li>Deep</li>
<li>Loose</li>
</props>
</li>
</modExtensions>
</rjw.HediffDef_PartBase>
<rjw.HediffDef_PartBase ParentName="NaturalPrivatePartBreast">
<defName>SlimeBreasts</defName>
<label>slime breasts</label>
<labelNoun>a pair of slime breasts</labelNoun>
<FluidType></FluidType>
<description>A pair of slick, translucent breasts that can grow or shrink to any desired size.</description>
<descriptionHyperlinks><ThingDef>SlimeGlob</ThingDef></descriptionHyperlinks>
<spawnThingOnRemoved>SlimeGlob</spawnThingOnRemoved>
</rjw.HediffDef_PartBase>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_PrivateParts/Hediffs_PrivateParts_Slime.xml
|
XML
|
mit
| 2,277
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<rjw.PartStagesDef>
<defName>RJW_PartStages</defName>
<!-- Every bra manufacturer has a slightly different scheme for bra sizes. -->
<!-- This is the scheme used by Ewa Michalak, 5cm band size interval and 2.54cm cup size interval. -->
<!-- Ewa Michalak sells the largest non-custom bras in the world. -->
<bandSizeInterval>5</bandSizeInterval>
<cupSizeInterval>2.54</cupSizeInterval>
<!-- Pretend all humans have the same band size. -->
<bandSizeBase>85</bandSizeBase>
<cupSizeLabels>
<li>-</li>
<li>A</li>
<li>B</li>
<li>C</li>
<li>D</li>
<li>DD</li>
<li>E</li>
<li>F</li>
<li>FF</li>
<li>G</li>
<li>GG</li>
<li>H</li>
<li>HH</li>
<li>J</li>
<li>JJ</li>
<li>K</li>
<li>KK</li>
<li>L</li>
<li>LL</li>
<li>M</li>
<li>MM</li>
<li>N</li>
<!-- Largest non-custom cup size sold by Ewa Michalak. -->
<li>NN</li>
<li>O</li>
<li>OO</li>
<li>P</li>
<li>PP</li>
<li>Q</li>
<li>QQ</li>
<li>R</li>
<li>RR</li>
<li>???</li>
</cupSizeLabels>
</rjw.PartStagesDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_PrivateParts/PartStages.xml
|
XML
|
mit
| 1,143
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<HediffDef Name="STDBase" Abstract="True">
<hediffClass>HediffWithComps</hediffClass>
<defaultLabelColor>(0.8, 0.8, 0.35)</defaultLabelColor>
<initialSeverity>0.010</initialSeverity>
</HediffDef>
<HediffDef Abstract="True" ParentName="STDBase" Name="HIVBase">
<hediffClass>HediffWithComps</hediffClass>
<tendable>true</tendable>
<stages>
<li>
<minSeverity>0.000</minSeverity>
<label>detectable</label>
</li>
<li>
<minSeverity>0.100</minSeverity>
<label>minor</label>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>-0.05</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.200</minSeverity>
<label>minor</label>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>-0.10</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.300</minSeverity>
<label>minor</label>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>-0.15</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.400</minSeverity>
<label>moderate</label>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>-0.20</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.500</minSeverity>
<label>major</label>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>-0.30</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.600</minSeverity>
<label>major</label>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>-0.40</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.700</minSeverity>
<label>major</label>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>-0.50</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.800</minSeverity>
<label>extreme</label>
<lifeThreatening>true</lifeThreatening>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>-0.70</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.900</minSeverity>
<label>extreme</label>
<lifeThreatening>true</lifeThreatening>
<capMods>
<li>
<capacity>BloodFiltration</capacity>
<offset>-0.95</offset>
</li>
</capMods>
</li>
</stages>
</HediffDef>
<HediffDef ParentName="HIVBase">
<defName>AcuteHIV</defName>
<label>HIV - Acute</label>
<description>An immunodeficiency virus that spreads through sexual contact.</description>
<makesSickThought>true</makesSickThought>
<maxSeverity>1</maxSeverity>
<tendable>true</tendable>
<comps>
<li Class="HediffCompProperties_Discoverable">
<sendLetterWhenDiscovered>false</sendLetterWhenDiscovered>
</li>
<li Class="HediffCompProperties_TendDuration">
<baseTendDurationHours>24</baseTendDurationHours>
<!-- Daily -->
<severityPerDayTended>-0.022</severityPerDayTended>
</li>
<li Class="HediffCompProperties_Immunizable">
<immunityPerDayNotSick>-0.060</immunityPerDayNotSick>
<immunityPerDaySick>0.280</immunityPerDaySick>
<severityPerDayNotImmune>0.130</severityPerDayNotImmune>
<severityPerDayImmune>-0.600</severityPerDayImmune>
</li>
</comps>
</HediffDef>
<HediffDef ParentName="HIVBase">
<defName>ChronicHIV</defName>
<label>HIV - Chronic</label>
<description>An immunodeficiency virus that spreads through sexual contact.</description>
<makesSickThought>false</makesSickThought>
<minSeverity>0.001</minSeverity>
<maxSeverity>1.000</maxSeverity>
<tendable>true</tendable>
<comps>
<li Class="HediffCompProperties_Discoverable">
<sendLetterWhenDiscovered>false</sendLetterWhenDiscovered>
</li>
<li Class="HediffCompProperties_TendDuration">
<baseTendDurationHours>240</baseTendDurationHours>
<!-- Every 10 days -->
<severityPerDayTended>-0.0013</severityPerDayTended>
</li>
<li Class="HediffCompProperties_Immunizable">
<severityPerDayNotImmune>0.0048</severityPerDayNotImmune>
</li>
</comps>
</HediffDef>
<HediffDef ParentName="STDBase">
<defName>Herpes</defName>
<label>Herpes</label>
<description>Genital sores that spread through sexual contact.</description>
<makesSickThought>false</makesSickThought>
<minSeverity>0.001</minSeverity>
<maxSeverity>0.650</maxSeverity>
<tendable>true</tendable>
<comps>
<li Class="HediffCompProperties_Discoverable">
<sendLetterWhenDiscovered>false</sendLetterWhenDiscovered>
</li>
<li Class="HediffCompProperties_TendDuration">
<baseTendDurationHours>240</baseTendDurationHours>
<!-- Every 10 days -->
<severityPerDayTended>-0.050</severityPerDayTended>
</li>
<li Class="HediffCompProperties_Immunizable">
<severityPerDayNotImmune>0.035</severityPerDayNotImmune>
</li>
</comps>
<stages>
<li>
<minSeverity>0.000</minSeverity>
<label>minor</label>
<painOffset>0.05</painOffset>
</li>
<li>
<minSeverity>0.250</minSeverity>
<label>moderate</label>
<painOffset>0.10</painOffset>
</li>
<li>
<minSeverity>0.500</minSeverity>
<label>major</label>
<painOffset>0.15</painOffset>
</li>
</stages>
</HediffDef>
<HediffDef ParentName="STDBase">
<defName>Warts</defName>
<label>Warts</label>
<description>Genital warts that spread through sexual contact.</description>
<makesSickThought>false</makesSickThought>
<minSeverity>0.000</minSeverity>
<maxSeverity>0.650</maxSeverity>
<tendable>true</tendable>
<comps>
<li Class="HediffCompProperties_Discoverable">
<sendLetterWhenDiscovered>false</sendLetterWhenDiscovered>
</li>
<li Class="HediffCompProperties_TendDuration">
<baseTendDurationHours>24</baseTendDurationHours>
<!-- Everyday -->
<severityPerDayTended>-0.138</severityPerDayTended>
</li>
<li Class="HediffCompProperties_Immunizable">
<immunityPerDayNotSick>-0.090</immunityPerDayNotSick>
<immunityPerDaySick>0.165</immunityPerDaySick>
<severityPerDayNotImmune>0.225</severityPerDayNotImmune>
<severityPerDayImmune>-0.400</severityPerDayImmune>
</li>
</comps>
<stages>
<li>
<minSeverity>0.000</minSeverity>
<label>minor</label>
</li>
<li>
<minSeverity>0.400</minSeverity>
<label>major</label>
</li>
</stages>
</HediffDef>
<HediffDef ParentName="STDBase">
<defName>Syphilis</defName>
<description>A bacterial infection that spreads through sexual contact.</description>
<label>Syphilis</label>
<makesSickThought>true</makesSickThought>
<initialSeverity>0.200</initialSeverity>
<minSeverity>0.000</minSeverity>
<lethalSeverity>1.000</lethalSeverity>
<tendable>true</tendable>
<comps>
<li Class="HediffCompProperties_Discoverable">
<sendLetterWhenDiscovered>false</sendLetterWhenDiscovered>
</li>
<li Class="HediffCompProperties_TendDuration">
<baseTendDurationHours>36</baseTendDurationHours>
<!-- 2 times every 3 days -->
<severityPerDayTended>-0.160</severityPerDayTended>
</li>
<li Class="HediffCompProperties_Immunizable">
<immunityPerDayNotSick>-0.045</immunityPerDayNotSick>
<immunityPerDaySick>0.060</immunityPerDaySick>
<severityPerDayNotImmune>0.080</severityPerDayNotImmune>
<severityPerDayImmune>-0.240</severityPerDayImmune>
</li>
</comps>
<stages>
<li>
<minSeverity>0.000</minSeverity>
<label>minor</label>
</li>
<li>
<minSeverity>0.360</minSeverity>
<label>moderate</label>
<capMods>
<li>
<capacity>Consciousness</capacity>
<offset>-0.05</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.600</minSeverity>
<label>major</label>
<painOffset>0.05</painOffset>
<capMods>
<li>
<capacity>Consciousness</capacity>
<offset>-0.15</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.10</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.840</minSeverity>
<label>extreme</label>
<painOffset>0.15</painOffset>
<lifeThreatening>true</lifeThreatening>
<capMods>
<li>
<capacity>Consciousness</capacity>
<offset>-0.30</offset>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.20</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.888</minSeverity>
<label>extreme</label>
<painOffset>0.18</painOffset>
<lifeThreatening>true</lifeThreatening>
<capMods>
<li>
<capacity>Consciousness</capacity>
<setMax>0.50</setMax>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.30</offset>
</li>
</capMods>
</li>
<li>
<minSeverity>0.936</minSeverity>
<label>extreme</label>
<painOffset>0.22</painOffset>
<lifeThreatening>true</lifeThreatening>
<capMods>
<li>
<capacity>Consciousness</capacity>
<setMax>0.10</setMax>
</li>
<li>
<capacity>Manipulation</capacity>
<offset>-0.40</offset>
</li>
</capMods>
</li>
</stages>
</HediffDef>
<HediffDef ParentName="MechanitesBase">
<defName>Boobitis</defName>
<label>boobitis</label>
<description>Boobitis is a highly contagious mechanite plague that causes permanent breast growth if left untreated. It was initialy created as a harmless glittertech "party drug" but has since mutated and spread to virtually every human colony.</description>
<makesSickThought>false</makesSickThought>
<stages>
<li>
<painOffset>0.1</painOffset>
<label>subtle swelling</label>
<statOffsets>
<SexAbility>0.1</SexAbility>
<Vulnerability>0.1</Vulnerability>
</statOffsets>
</li>
<li>
<minSeverity>0.5</minSeverity>
<label>noticable swelling</label>
<painOffset>0.2</painOffset>
<statOffsets>
<SexAbility>0.2</SexAbility>
<Vulnerability>0.3</Vulnerability>
</statOffsets>
</li>
<li>
<minSeverity>0.9</minSeverity>
<label>spectacular swelling</label>
<painOffset>0.3</painOffset>
<statOffsets>
<SexAbility>0.3</SexAbility>
<Vulnerability>0.5</Vulnerability>
</statOffsets>
</li>
</stages>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_STDs.xml
|
XML
|
mit
| 10,269
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<HediffDef>
<defName>RJW_BabyState</defName>
<hediffClass>rjw.Hediff_SimpleBaby</hediffClass>
<label>child is growing</label>
<description>A growing child.</description>
<initialSeverity>0.1</initialSeverity>
<scenarioCanAdd>false</scenarioCanAdd>
<stages>
<li>
<label>baby</label>
<minSeverity>0.1</minSeverity>
<capMods>
<li>
<capacity>Moving</capacity>
<setMax>0</setMax>
</li>
<li>
<capacity>Talking</capacity>
<setMax>0</setMax>
</li>
</capMods>
</li>
<li>
<label>toddler</label>
<minSeverity>0.5</minSeverity>
<capMods>
<li>
<capacity>Manipulation</capacity>
<offset>-1.0</offset>
</li>
<li>
<capacity>Talking</capacity>
<offset>-0.5</offset>
</li>
<li>
<capacity>Moving</capacity>
<offset>-0.35</offset>
</li>
</capMods>
</li>
<li>
<label>child</label>
<minSeverity>0.75</minSeverity>
</li>
</stages>
</HediffDef>
<!-- This only exists separately from BabyState to get around a bug making children drop their weapons on savegame load.-->
<HediffDef>
<defName>RJW_NoManipulationFlag</defName>
<hediffClass>HediffWithComps</hediffClass>
<label>Too young to work</label>
<description>Too young to work.</description>
<initialSeverity>0.001</initialSeverity>
<scenarioCanAdd>false</scenarioCanAdd>
<stages>
<li>
<!--<everVisible>false</everVisible>-->
<capMods>
<li>
<capacity>Manipulation</capacity>
<setMax>0.0</setMax>
</li>
</capMods>
</li>
</stages>
</HediffDef>
<!-- Use CnP's UnhappyBaby instead
<HediffDef>
<defName>RJW_UnhappyBaby</defName>
<hediffClass>rjw.Hediff_SimpleUnhappyBaby</hediffClass>
<label>unhappy baby</label>
</HediffDef>
-->
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_SimpleBaby.xml
|
XML
|
mit
| 1,865
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!-- Some sizes
Micro 0.01 Nipples
0.02 (breasts) Tiny
Small/Tight 0.20 Small
Average 0.40 Average
Large/Accommodating 0.60 Large
Huge/Cavernous 0.80 Huge
1.00 (breasts) Enormous
Towering/Abyssal 1.01 (not breasts)
1.20 (breasts) Massive
1.40 (breasts) Gargantuan
1.60 (breasts) Colossal
1.80 (breasts) Titanic
-->
<HediffDef Name="rjw_parts_size_changer_base" Abstract="True">
<hediffClass>rjw.Hediff_PartsSizeChangerCE</hediffClass>
<defaultLabelColor>(1, 0.41, 0.71)</defaultLabelColor>
<description>Change part size to:</description>
</HediffDef>
<!-- For use in PC -->
<!-- (broken) -->
<HediffDef ParentName="rjw_parts_size_changer_base">
<defName>size0</defName>
<label>RJW part size set(PC)(broken):</label>
<hediffClass>rjw.Hediff_PartsSizeChangerPC</hediffClass>
<initialSeverity>0.01</initialSeverity>
<scenarioCanAdd>true</scenarioCanAdd>
<stages>
<li>
<label>Micro/Flat</label>
<minSeverity>0.01</minSeverity>
</li>
<li>
<label>Small/Tight</label>
<minSeverity>0.05</minSeverity>
</li>
<li>
<label>Average</label>
<minSeverity>0.25</minSeverity>
</li>
<li>
<label>Large/Loose</label>
<minSeverity>0.70</minSeverity>
</li>
<li>
<label>Huge/Gaping</label>
<minSeverity>0.90</minSeverity>
</li>
<li>
<label>Oversized</label>
<minSeverity>1.01</minSeverity>
</li>
</stages>
<comps>
<li Class="HediffCompProperties_GetsPermanent">
<permanentLabel>RJW part size set</permanentLabel>
</li>
</comps>
</HediffDef>
<!-- For use in CE -->
<HediffDef ParentName="rjw_parts_size_changer_base">
<defName>size1</defName>
<label>RJW size set(CE): Micro/Nipples</label>
<initialSeverity>0.01</initialSeverity>
</HediffDef>
<HediffDef ParentName="rjw_parts_size_changer_base">
<defName>size2</defName>
<label>RJW size set(CE): Micro/Tiny</label>
<initialSeverity>0.02</initialSeverity>
</HediffDef>
<HediffDef ParentName="rjw_parts_size_changer_base">
<defName>size3</defName>
<label>RJW size set(CE): Small/Tight</label>
<initialSeverity>0.20</initialSeverity>
</HediffDef>
<HediffDef ParentName="rjw_parts_size_changer_base">
<defName>size4</defName>
<label>RJW size set(CE): Average</label>
<initialSeverity>0.40</initialSeverity>
</HediffDef>
<HediffDef ParentName="rjw_parts_size_changer_base">
<defName>size5</defName>
<label>RJW size set(CE): Large/Accommodating</label>
<initialSeverity>0.60</initialSeverity>
</HediffDef>
<HediffDef ParentName="rjw_parts_size_changer_base">
<defName>size6</defName>
<label>RJW size set(CE): Huge/Cavernous</label>
<initialSeverity>0.80</initialSeverity>
</HediffDef>
<HediffDef ParentName="rjw_parts_size_changer_base">
<defName>size7</defName>
<label>RJW size set(CE): Towering/Abyssal/Enormous</label>
<initialSeverity>1.01</initialSeverity>
</HediffDef>
<HediffDef ParentName="rjw_parts_size_changer_base">
<defName>size8</defName>
<label>RJW breasts size set(CE): Massive</label>
<initialSeverity>1.20</initialSeverity>
</HediffDef>
<HediffDef ParentName="rjw_parts_size_changer_base">
<defName>size9</defName>
<label>RJW breasts size set(CE): Gargantuan</label>
<initialSeverity>1.40</initialSeverity>
</HediffDef>
<HediffDef ParentName="rjw_parts_size_changer_base">
<defName>size10</defName>
<label>RJW breasts size set(CE): Colossal</label>
<initialSeverity>1.60</initialSeverity>
</HediffDef>
<HediffDef ParentName="rjw_parts_size_changer_base">
<defName>size11</defName>
<label>RJW breasts size set(CE): Titanic</label>
<initialSeverity>1.80</initialSeverity>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_SizeChanger.xml
|
XML
|
mit
| 3,836
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<HediffDef>
<defName>Sterilized</defName>
<hediffClass>HediffWithComps</hediffClass>
<defaultLabelColor>(0.8, 0.8, 0.35)</defaultLabelColor>
<description>Unable to reproduce.</description>
<label>sterilized</label>
<stages>
<li>
<capMods>
<li>
<capacity>RJW_Fertility</capacity>
<setMax>0</setMax>
</li>
</capMods>
</li>
</stages>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_Sterilized.xml
|
XML
|
mit
| 453
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<HediffDef>
<defName>Hediff_Submitting</defName>
<label>Prostrating self</label>
<hediffClass>rjw.Hediff_Submitting</hediffClass>
<description>Submitting.</description>
<defaultLabelColor>(1, 0.41, 0.81)</defaultLabelColor>
<initialSeverity>1.0</initialSeverity>
<minSeverity>1.0</minSeverity>
<maxSeverity>1.0</maxSeverity>
<scenarioCanAdd>false</scenarioCanAdd>
<comps>
<li Class="HediffCompProperties_Disappears">
<disappearsAfterTicks>
<!--1 hour-->
<min>2500</min>
<!--2 hours-->
<max>5000</max>
</disappearsAfterTicks>
</li>
</comps>
<stages>
<li>
<becomeVisible>true</becomeVisible>
<capMods>
<li>
<capacity>Moving</capacity>
<postFactor>0.0</postFactor>
</li>
</capMods>
<statOffsets>
<Vulnerability>0.95</Vulnerability>
</statOffsets>
</li>
</stages>
</HediffDef>
<!-- prevents 10 job stacks error, also improves performance since we don't do all the rape checks-->
<HediffDef>
<defName>Hediff_RapeEnemyCD</defName>
<label>rape enemy cooldown</label>
<description>"Who's next?"</description>
<hediffClass>HediffWithComps</hediffClass>
<defaultLabelColor>(1, 0.41, 0.81)</defaultLabelColor>
<initialSeverity>1.0</initialSeverity>
<minSeverity>1.0</minSeverity>
<maxSeverity>1.0</maxSeverity>
<scenarioCanAdd>false</scenarioCanAdd>
<comps>
<li Class="HediffCompProperties_Disappears">
<disappearsAfterTicks>
<!--60=1 sec -->
<!--41,7 sec ~ 1 rimworld hour -->
<min>2500</min>
<max>2500</max>
</disappearsAfterTicks>
</li>
</comps>
<stages>
<li>
<becomeVisible>false</becomeVisible>
</li>
</stages>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_Submitting.xml
|
XML
|
mit
| 1,766
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<HediffDef Name="Sex_Change_Thoughts_Syndrome" Abstract="True">
<hediffClass>HediffWithComps</hediffClass>
<defaultLabelColor>(1, 0.41, 0.71)</defaultLabelColor>
<!--This will start from top severity and go down gradually, the code will change initial severity if needed for particular pawn-->
<description>Your description could be here.</description>
<initialSeverity>1.0</initialSeverity>
<minSeverity>0.001</minSeverity>
<maxSeverity>1.0</maxSeverity>
<isBad>false</isBad>
<tendable>false</tendable>
<scenarioCanAdd>false</scenarioCanAdd>
<comps>
<li Class="HediffCompProperties_SeverityPerDay">
<severityPerDay>-0.01</severityPerDay>
</li>
<li Class="HediffCompProperties_Disappears">
<!--These are long but lowest stage is actually bonus mood.-->
<!--The code will modify the severity so that some pawns are happy right away and others only get used to it before effect vanishes-->
<disappearsAfterTicks>
<!--60 days (1 year)-->
<min>3600000</min>
<!--1.5 years-->
<max>4800000</max>
</disappearsAfterTicks>
</li>
</comps>
<stages>
<li>
<label>ignorance</label>
<becomeVisible>false</becomeVisible>
</li>
<li>
<label>acceptance</label>
<minSeverity>0.01</minSeverity>
<becomeVisible>false</becomeVisible>
</li>
<li>
<label>saddness</label>
<minSeverity>0.25</minSeverity>
<becomeVisible>false</becomeVisible>
</li>
<li>
<label>anger</label>
<becomeVisible>false</becomeVisible>
<minSeverity>0.4</minSeverity>
</li>
<li>
<label>rejection</label>
<minSeverity>0.7</minSeverity>
<becomeVisible>false</becomeVisible>
</li>
</stages>
</HediffDef>
<!--THese are all the same, the flavor text is different-->
<HediffDef ParentName="Sex_Change_Thoughts_Syndrome">
<defName>hediff_male2trap</defName>
<label>male2trap</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Thoughts_Syndrome">
<defName>hediff_male2female</defName>
<label>male2female</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Thoughts_Syndrome">
<defName>hediff_male2futa</defName>
<label>male2futa</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Thoughts_Syndrome">
<defName>hediff_female2trap</defName>
<label>female2trap</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Thoughts_Syndrome">
<defName>hediff_female2male</defName>
<label>female2male</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Thoughts_Syndrome">
<defName>hediff_female2futa</defName>
<label>female2futa</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Thoughts_Syndrome">
<defName>hediff_futa2trap</defName>
<label>futa2trap</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Thoughts_Syndrome">
<defName>hediff_futa2male</defName>
<label>futa2male</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Thoughts_Syndrome">
<defName>hediff_futa2female</defName>
<label>futa2female</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Thoughts_Syndrome">
<defName>hediff_trap2futa</defName>
<label>trap2futa</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Thoughts_Syndrome">
<defName>hediff_trap2male</defName>
<label>trap2male</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Thoughts_Syndrome">
<defName>hediff_trap2female</defName>
<label>trap2female</label>
</HediffDef>
<!--hidden hediffs to track original sex-->
<HediffDef Name="Sex_Change_Original_Sex" Abstract="True">
<hediffClass>HediffWithComps</hediffClass>
<defaultLabelColor>(1, 0.41, 0.71)</defaultLabelColor>
<description>Changed gender</description>
<maxSeverity>1.0</maxSeverity>
<isBad>false</isBad>
<tendable>false</tendable>
<scenarioCanAdd>false</scenarioCanAdd>
<stages>
<li>
<becomeVisible>false</becomeVisible>
</li>
</stages>
</HediffDef>
<HediffDef ParentName="Sex_Change_Original_Sex">
<defName>hediff_was_boy</defName>
<label>was_boy</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Original_Sex">
<defName>hediff_was_girl</defName>
<label>was_girl</label>
</HediffDef>
<!--whatever this may mean:-->
<HediffDef ParentName="Sex_Change_Original_Sex">
<defName>hediff_was_futa</defName>
<label>was_futa</label>
</HediffDef>
<HediffDef ParentName="Sex_Change_Original_Sex">
<defName>hediff_was_trap</defName>
<label>was_trap</label>
</HediffDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/HediffDefs/Hediffs_Transgender.xml
|
XML
|
mit
| 4,508
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<IncidentDef>
<defName>NymphJoins</defName>
<label>nymph joins</label>
<category>Misc</category>
<targetTags>
<li>Map_PlayerHome</li>
</targetTags>
<workerClass>rjw.IncidentWorker_NymphJoins</workerClass>
<baseChance>0.67</baseChance>
<minRefireDays>6</minRefireDays>
</IncidentDef>
<IncidentDef>
<defName>NymphVisitor</defName>
<label>nymph visitor</label>
<category>Misc</category>
<targetTags>
<li>Map_PlayerHome</li>
</targetTags>
<workerClass>rjw.IncidentWorker_NymphVisitor</workerClass>
<baseChance>0.67</baseChance>
<minRefireDays>6</minRefireDays>
</IncidentDef>
<IncidentDef>
<defName>NymphVisitorGroupEasy</defName>
<label>nymph raid(easy)</label>
<targetTags>
<li>Map_PlayerHome</li>
</targetTags>
<workerClass>rjw.IncidentWorker_NymphVisitorGroupEasy</workerClass>
<category>ThreatBig</category>
<baseChance>0.1</baseChance>
<minRefireDays>6</minRefireDays>
<pointsScaleable>false</pointsScaleable>
</IncidentDef>
<IncidentDef>
<defName>NymphVisitorGroupHard</defName>
<label>nymph raid(hard)</label>
<targetTags>
<li>Map_PlayerHome</li>
</targetTags>
<workerClass>rjw.IncidentWorker_NymphVisitorGroupHard</workerClass>
<category>ThreatBig</category>
<baseChance>0.01</baseChance>
<minRefireDays>6</minRefireDays>
<pointsScaleable>false</pointsScaleable>
</IncidentDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/IncidentDef/Incidents_Nymph.xml
|
XML
|
mit
| 1,432
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<IncidentDef ParentName="DiseaseIncident">
<defName>Disease_Boobitis</defName>
<label>boobitis mechanites</label>
<diseaseIncident>Boobitis</diseaseIncident>
<diseasePartsToAffect>
<li>Chest</li>
</diseasePartsToAffect>
<letterLabel>Disease (boobitis mechanites)</letterLabel>
</IncidentDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/IncidentDef/Incidents_STD.xml
|
XML
|
mit
| 368
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<IncidentDef>
<defName>TestInc</defName>
<label>test inc</label>
<category>Misc</category>
<targetTags>
<li>Map_PlayerHome</li>
</targetTags>
<workerClass>rjw.IncidentWorker_TestInc</workerClass>
<letterLabel>Something Happened</letterLabel>
<letterText>Something Happened</letterText>
<letterDef>ThreatSmall</letterDef>
<baseChance>0.0</baseChance>
<minRefireDays>9999</minRefireDays>
</IncidentDef>
<IncidentDef>
<defName>TestInc2</defName>
<label>test inc2</label>
<category>Misc</category>
<targetTags>
<li>Map_PlayerHome</li>
</targetTags>
<workerClass>rjw.IncidentWorker_TestInc2</workerClass>
<letterLabel>Something Happened2</letterLabel>
<letterText>Something Happened2</letterText>
<letterDef>ThreatSmall</letterDef>
<baseChance>0.0</baseChance>
<minRefireDays>9999</minRefireDays>
</IncidentDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/IncidentDef/Incidents_Testing.xml
|
XML
|
mit
| 917
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!-- Breeding/rape -->
<InteractionDef ParentName="RJW_InteractionDefBaseBestiaity">
<defName>AnalBreeding</defName>
<label>anal breeding</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Mounted [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was anally mounted by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>breed anally</RMBLabelM>
<RMBLabelF>request anal breeding</RMBLabelF>
<sextype1>Bestiality</sextype1>
<rjwSextype>Anal</rjwSextype>
<tags>
<li>Anal</li>
<li>Bestiality</li>
<li>AnimalOnAnimal</li>
<li>Rape</li>
<li>Breeding</li>
</tags>
<i_tags>
<li>Animal</li>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>AnalBreedingRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>VaginalBreeding</defName>
<label>vaginal breeding</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Mounted [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was mounted by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>breed vaginally</RMBLabelM>
<RMBLabelF>request vaginal breeding</RMBLabelF>
<sextype1>Bestiality</sextype1>
<rjwSextype>Vaginal</rjwSextype>
<tags>
<li>Vaginal</li>
<li>Bestiality</li>
<li>AnimalOnAnimal</li>
<li>Rape</li>
<li>Breeding</li>
</tags>
<i_tags>
<li>Animal</li>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>VaginalBreedingRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>OralBreeding</defName>
<label>licking</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Licked [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was licked by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>lick</RMBLabelM>
<RMBLabelF>get licked</RMBLabelF>
<sextype1>Bestiality</sextype1>
<rjwSextype>Oral</rjwSextype>
<tags>
<li>Oral</li>
<li>Bestiality</li>
<li>AnimalOnAnimal</li>
<li>Rape</li>
</tags>
<i_tags>
<li>Animal</li>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</i_tags>
<r_tags>
<li>Oral</li>
</r_tags>
<rulepack_defs>
<li>OtherRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<!-- Another rare one, but needed to get the icons working right. -->
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>FingeringBreeding</defName>
<label>fingering</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Fingered [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was fingered by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give fingering</RMBLabelM>
<RMBLabelF>ask for a fingering</RMBLabelF>
<sextype1>Bestiality</sextype1>
<rjwSextype>Fingering</rjwSextype>
<tags>
<li>Anal</li>
<li>Vaginal</li>
<li>Handjob</li>
<li>Bestiality</li>
<li>AnimalOnAnimal</li>
<li>Rape</li>
</tags>
<i_tags>
<li>Animal</li>
<li>Handjob</li>
</i_tags>
<r_tags>
<li>Anal</li>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>FingeringRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>ForcedOralBreeding</defName>
<label>licking</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forced oral sex from [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forced into giving oral to [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give licking</RMBLabelM>
<RMBLabelF>ask for licking</RMBLabelF>
<sextype1>Bestiality</sextype1>
<rjwSextype>Oral</rjwSextype>
<tags>
<li>Oral</li>
<li>Bestiality</li>
<li>AnimalOnAnimal</li>
<li>Rape</li>
</tags>
<i_tags>
<li>Animal</li>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</i_tags>
<r_tags>
<li>Oral</li>
</r_tags>
<rulepack_defs>
<li>OtherRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Breeding/Interactions_Breed.xml
|
XML
|
mit
| 5,295
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!-- invitation "Female" breeding -->
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>RequestVaginalBreeding</defName>
<label>vaginal breeding</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->[RECIPIENT_nameDef] presented to [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Presented to [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>breed vaginally</RMBLabelM>
<RMBLabelF>request vaginal breeding</RMBLabelF>
<sextype1>Bestiality</sextype1>
<rjwSextype>Vaginal</rjwSextype>
<i_role>Passive</i_role>
<tags>
<li>Vaginal</li>
<li>Bestiality</li>
<li>AnimalOnAnimal</li>
</tags>
<i_tags>
<li>Animal</li>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>VaginalBreedingRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>RequestAnalBreeding</defName>
<label>anal breeding</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->[RECIPIENT_nameDef] presented to [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Presented to [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>breed anally</RMBLabelM>
<RMBLabelF>request anal breeding</RMBLabelF>
<sextype1>Bestiality</sextype1>
<rjwSextype>Anal</rjwSextype>
<tags>
<li>Anal</li>
<li>Bestiality</li>
<li>AnimalOnAnimal</li>
</tags>
<i_tags>
<li>Animal</li>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>AnalBreedingRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Breeding/Interactions_BreedF.xml
|
XML
|
mit
| 2,185
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<InteractionDef ParentName="RJW_InteractionDefBaseRape"> <!-- not used?, keep for saves? -->
<defName>ForcedFellatioBreeding</defName>
<label>Service oraly</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Face fucked [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was face fucked.</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>breed oraly</RMBLabelM>
<RMBLabelF>request oral breeding</RMBLabelF>
<sextype1>Bestiality</sextype1>
<rjwSextype>Fellatio</rjwSextype>
<tags>
<li>Oral</li>
<li>Bestiality</li>
<li>AnimalOnAnimal</li>
<li>Rape</li>
</tags>
<i_tags>
<li>Animal</li>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</i_tags>
<r_tags>
<li>Oral</li>
</r_tags>
<rulepack_defs>
<li>OtherRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>RequestBreeding</defName>
<label>vaginal breeding</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->[RECIPIENT_nameDef] presented to [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Presented to [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>breed vaginally</RMBLabelM>
<RMBLabelF>request vaginal breeding</RMBLabelF>
<sextype1>Bestiality</sextype1>
<rjwSextype>Vaginal</rjwSextype>
<tags>
<li>Vaginal</li>
<li>Bestiality</li>
<li>AnimalOnAnimal</li>
</tags>
<i_tags>
<li>Animal</li>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>OtherRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Breeding/Interactions_Breed_dump.xml
|
XML
|
mit
| 2,123
|
<?xml version="1.0" encoding="utf-8" ?>
<!--theory-->
<!--included rjw interactions are hardcoded and used for fallback, new interactions will be randomly picked by npcs-->
<Defs>
<InteractionDef>
<defName>0AnalBreeding0</defName>
<label>anal breeding</label>
<workerClass>rjw.InteractionWorker_AnalSexAttempt</workerClass><!-->not sure what it is, probably disables interactions for non rjw-->
<symbol>UI/Commands/Breeding_Animal_off</symbol>
<socialFightBaseChance>0.0</socialFightBaseChance>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Mounted1 [RECIPIENT_nameDef].</li>
<li>r_logentry->Mounted2 [RECIPIENT_nameDef].</li>
<li>r_logentry->Mounted3 [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was anally mounted1 by [INITIATOR_nameDef].</li>
<li>r_logentry->Was anally mounted2 by [INITIATOR_nameDef].</li>
<li>r_logentry->Was anally mounted3 by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>breed anally</RMBLabelM><!--Fuck partner. male/futa-->
<RMBLabelF>request anal breeding</RMBLabelF><!--Get Fucked by partner. female/futa-->
<!--uncomment to enable/add to rjw interactions selection-->
<!--<sextype1>Normal</sextype1> { Normal, Rape, Bestiality}-->
<!-- rjwSextype { None, Vaginal, Anal, Oral, Masturbation, DoublePenetration, Boobjob, Handjob, Footjob, Fingering, Scissoring, MutualMasturbation, Fisting, MechImplant, Rimming, Fellatio, Cunnilingus, Sixtynine }-->
<!--<rjwSextype>Vaginal</rjwSextype>-->
<!--WIP shit-->
<i_role>Active</i_role><!--Fuck-->
<!--<i_role>Passive</i_role><!--Get Fucked-->
<tags><!--Tags for finding/filtering interaction in db-->
<li>Oral</li>
<li>Anal</li>
<li>Vaginal</li>
<li>Handjob</li>
<li>Footjob</li>
<li>Breastjob</li>
<li>Masturbation</li>
<li>Bestiality</li>
<li>AnimalOnAnimal</li>
<li>Rape</li>
<li>Breeding</li>
</tags>
<i_tags><!--Tags showing what initiator does/uses/needs-->
<li>Animal</li>
<li>Oral</li>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
<li>Vaginal</li>
<li>Anal</li>
</i_tags>
<r_tags><!--Tags showing what receiver does/uses/needs-->
<li>Animal</li>
<li>Oral</li>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
<li>Vaginal</li>
<li>Anal</li>
</r_tags>
<!-- ???
Handjob+Anal=Fisting/Fingering
Handjob+Vaginal=Fisting/Fingering
Oral+Anal=Rimmimg
Oral+Oral=Sixtynine
Oral+Vaginal=Cunnilingus
Oral+Penis=Fellatio/Beakjob
Vaginal+Vaginal=Scissoring
Penis+Vaginal+Anal=DoublePenetration
Masturbation+Masturbation=MutualMasturbation ???
-->
<!--Use these rulepack as fixed outcome, none = try find random by tags(maybe someday?)-->
<rulepack_defs>
<li>FootjobRP</li>
<li>FingeringRP</li>
<li>FistingRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Interactions example.txt
|
Text
|
mit
| 3,144
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<InteractionDef Name="RJW_InteractionDefBaseSex" Abstract="True">
<workerClass>rjw.InteractionWorker_OtherSexAttempt</workerClass>
<symbol>Things/Mote/SpeechSymbols/Romance</symbol>
<socialFightBaseChance>0.0</socialFightBaseChance>
<recipientThought>MadeSomeLovin</recipientThought>
</InteractionDef>
<InteractionDef Name="RJW_InteractionDefBaseRape" Abstract="True">
<workerClass>rjw.InteractionWorker_OtherSexAttempt</workerClass>
<symbol>UI/Icons/noheart</symbol>
<socialFightBaseChance>0.0</socialFightBaseChance>
<recipientThought>StoleSomeLovin</recipientThought>
<initiatorXpGainSkill>Melee</initiatorXpGainSkill>
<initiatorXpGainAmount>30</initiatorXpGainAmount>
</InteractionDef>
<InteractionDef Name="RJW_InteractionDefBaseBestiaity" Abstract="True">
<workerClass>rjw.InteractionWorker_OtherSexAttempt</workerClass>
<symbol>UI/Commands/Breeding_Animal_off</symbol>
<socialFightBaseChance>0.0</socialFightBaseChance>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Interactions_Base.xml
|
XML
|
mit
| 1,036
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!-- Experimenting with sex dialogue. This was easiest to add, but the same method could be used to add pillow talk, etc.-->
<InteractionDef>
<defName>AnimalSexChat</defName>
<label>animal chat</label>
<symbol>Things/Mote/SpeechSymbols/AnimalChat</symbol>
<initiatorXpGainSkill>Animals</initiatorXpGainSkill>
<initiatorXpGainAmount>40</initiatorXpGainAmount>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry(p=20)->[INITIATOR_nameDef] [zooact] [RECIPIENT_nameDef].</li>
<li>r_logentry->[INITIATOR_nameDef] sat near [RECIPIENT_nameDef] and talked to [INITIATOR_objective]self about [TalkTopicSex].</li>
<li>r_logentry->[INITIATOR_nameDef] sat near [RECIPIENT_nameDef] and talked to [INITIATOR_objective]self about [TalkTopicAny].</li>
<li>r_logentry->[INITIATOR_nameDef] approached [RECIPIENT_nameDef] while whispering to [INITIATOR_objective]self about [TalkTopicSex].</li>
<li>r_logentry->[INITIATOR_nameDef] approached [RECIPIENT_nameDef] while whispering to [INITIATOR_objective]self about [TalkTopicAny].</li>
<li>r_logentry(p=2)->[INITIATOR_nameDef] came near [RECIPIENT_nameDef] while talking to [INITIATOR_objective]self about [TalkTopicSex].</li>
<li>r_logentry->[INITIATOR_nameDef] came near [RECIPIENT_nameDef] while talking to [INITIATOR_objective]self about [TalkTopicAny].</li>
<li>r_logentry->[INITIATOR_nameDef] tried to make [RECIPIENT_nameDef] sit still.</li>
<li>r_logentry->[INITIATOR_nameDef] attempted to hold [RECIPIENT_nameDef] still.</li>
<li>r_logentry->[INITIATOR_nameDef] slapped [RECIPIENT_nameDef] in a show of dominance.</li>
<li>r_logentry->[INITIATOR_nameDef] gently stroked [RECIPIENT_nameDef]'s genitals.</li>
<li>r_logentry->[INITIATOR_nameDef] grasped a vulnerable body part of [RECIPIENT_nameDef], demanding obedience.</li>
<li>zooact->demanded obedience from</li>
<li>zooact->made calming noises towards</li>
<li>zooact->offered slow, friendly gestures to</li>
<li>zooact->made shushing noises at</li>
<li>zooact->made happy clicking noises at</li>
<li>zooact->gestured gently and approached</li>
<li>zooact->slowly approached</li>
<li>zooact->gently touched</li>
<li>zooact->gently caressed</li>
<li>zooact->firmly stroked</li>
<li>zooact->calmed and encouraged</li>
<li>zooact->matched breathing with</li>
<li>zooact->took a low stance while approaching</li>
<li>zooact->showed no fear or anger to</li>
<li>zooact->firmly yet softly touched</li>
<li>zooact->showed a relaxed attitude towards</li>
<li>zooact->showed [INITIATOR_possessive] genitals to</li>
<li>zooact->presented [INITIATOR_possessive] genitals to</li>
<li>zooact->whispered a story about [TalkTopicAny] to</li>
<li>zooact->whispered a story about [TalkTopicSex] to</li>
</rulesStrings>
</logRulesInitiator>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Interactions_Dialogue.xml
|
XML
|
mit
| 2,939
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!--
<InteractionDef>
<defName>SelfAutoFellatio</defName>
<label>AutoFellatio</label>
<workerClass>rjw.InteractionWorker_VaginalSexAttempt</workerClass>
<symbol>Things/Mote/SpeechSymbols/Romance</symbol>
<socialFightBaseChance>0.0</socialFightBaseChance>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Fellated myself.</li>
</rulesStrings>
</logRulesInitiator>
</InteractionDef>
<InteractionDef>
<defName>Fellatio</defName>
<label>Fellatio</label>
<workerClass>rjw.InteractionWorker_VaginalSexAttempt</workerClass>
<symbol>Things/Mote/SpeechSymbols/Romance</symbol>
<socialFightBaseChance>0.0</socialFightBaseChance>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Breastjobbed myself.</li>
</rulesStrings>
</logRulesInitiator>
</InteractionDef>
<InteractionDef>
<defName>Fellatio</defName>
<label>Fellatio</label>
<workerClass>rjw.InteractionWorker_VaginalSexAttempt</workerClass>
<symbol>Things/Mote/SpeechSymbols/Romance</symbol>
<socialFightBaseChance>0.0</socialFightBaseChance>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Stroked myself.</li>
</rulesStrings>
</logRulesInitiator>
</InteractionDef>
<InteractionDef>
<defName>Fellatio</defName>
<label>Fellatio</label>
<workerClass>rjw.InteractionWorker_VaginalSexAttempt</workerClass>
<symbol>Things/Mote/SpeechSymbols/Romance</symbol>
<socialFightBaseChance>0.0</socialFightBaseChance>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Schlicked myself.</li>
</rulesStrings>
</logRulesInitiator>
</InteractionDef>
<InteractionDef>
<defName>Fellatio</defName>
<label>Fellatio</label>
<workerClass>rjw.InteractionWorker_VaginalSexAttempt</workerClass>
<symbol>Things/Mote/SpeechSymbols/Romance</symbol>
<socialFightBaseChance>0.0</socialFightBaseChance>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Fellated myself.</li>
</rulesStrings>
</logRulesInitiator>
</InteractionDef>
-->
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Interactions_Masturbate.xml
|
XML
|
mit
| 2,041
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>RimmingRape</defName>
<label>rimming</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully rimmed [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forcibly rimmed by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give an anal rimming</RMBLabelM>
<RMBLabelF>forcefully receive an anal rimming</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Rimming</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>OtherRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>CunnilingusRape</defName>
<label>cunnilingus</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully gave cunnilingus to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Forcibly received cunnilingus from [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a cunnilingus</RMBLabelM>
<RMBLabelF>forcefully receive a cunnilingus</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Cunnilingus</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>OtherRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>FellatioRape</defName>
<label>fellatio</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully fellated [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forcibly fellated by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a fellatio</RMBLabelM>
<RMBLabelF> forcefully receive a fellatio</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Fellatio</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</r_tags>
<rulepack_defs>
<li>OtherRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>BeakjobRape</defName>
<label>beakjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully gave a beakjob to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Forcibly received a beakjob from [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a beakjob</RMBLabelM>
<RMBLabelF>forcefully receive a beakjob</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>None</rjwSextype><!-- hardcoded, overrides Fellatio-->
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>OtherRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>SixtynineRape</defName>
<label>69ing</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully 69'd with [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forcibly 69'd with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully sixtynine(top)</RMBLabelM>
<RMBLabelF>forcefully sixtynine(bottom)</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Sixtynine</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>OtherRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Rape/Interactions_Oral.xml
|
XML
|
mit
| 4,715
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>RimmingRapeF</defName>
<label>rimming</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully received rimming from [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forced to rimm [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give an anal rimming</RMBLabelM>
<RMBLabelF>forcefully receive an anal rimming</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Rimming</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>ForcedRimmingRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>CunnilingusRapeF</defName>
<label>cunnilingus</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully received cunnilingus from [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Forcibly gave cunnilingus to [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a cunnilingus</RMBLabelM>
<RMBLabelF>forcefully receive a cunnilingus</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Cunnilingus</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>ForcedCunnilingusRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>FellatioRapeF</defName>
<label>fellatio</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully received fellatio from [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forced to fellate [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a fellatio</RMBLabelM>
<RMBLabelF>forcefully receive a fellatio</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Fellatio</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</r_tags>
<rulepack_defs>
<li>ForcedFellatioRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>BeakjobRapeF</defName>
<label>beakjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully received a beakjob from [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forced to give a beakjob to [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a beakjob</RMBLabelM>
<RMBLabelF>forcefully receive a beakjob</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>None</rjwSextype><!-- hardcoded, overrides Fellatio-->
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>ForcedFellatioRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>SixtynineRapeF</defName>
<label>69ing</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully 69'd with [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forcibly 69'd with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully sixtynine(top)</RMBLabelM>
<RMBLabelF>forcefully sixtynine(bottom)</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Sixtynine</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>ForcedSixtynineRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Rape/Interactions_OralF.xml
|
XML
|
mit
| 4,774
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>AnalRape</defName>
<label>anal</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Raped anally [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was anally raped by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully have anal sex</RMBLabelM>
<RMBLabelF>forcefully receive anal sex</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Anal</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>AnalRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>VaginalRape</defName>
<label>vaginal</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Raped vaginally [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was vaginally raped by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully have vaginal sex</RMBLabelM>
<RMBLabelF>forcefully receive vaginal sex</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Vaginal</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>VaginalRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>HandjobRape</defName>
<label>handjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully jerked off [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forcibly jerked off by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a handjob</RMBLabelM>
<RMBLabelF>forcefully receive a handjob</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Handjob</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>HandjobRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>FootjobRape</defName>
<label>footjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully gave a footjo to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forcibly given a footjob by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a footjob</RMBLabelM>
<RMBLabelF>forcefully receive a footjob</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Footjob</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>FootjobRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>FingeringRape</defName>
<label>fingering</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully fingered [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forcibly fingered by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give fingering</RMBLabelM>
<RMBLabelF>forcefully receive fingering</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Fingering</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>FingeringRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>FistingRape</defName>
<label>fisting</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully fisted [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forcibly fisted by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a fisting</RMBLabelM>
<RMBLabelF>forcefully receive a fisting</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Fisting</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>FistingRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>BreastjobRape</defName>
<label>breastjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully gave a breastjob to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forcibly given a breastjob by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a breastjob</RMBLabelM>
<RMBLabelF>forcefully receive a breastjob</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Boobjob</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>OtherRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>DoublePenetrationRape</defName>
<label>double-penetration</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Double-penetrated [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was double-penetrated by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give double-penetration</RMBLabelM>
<RMBLabelF>forcefully receive double-penetration</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>DoublePenetration</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>DoubleRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>ScissoringRape</defName>
<label>scissoring</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully scissored [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forcibly scissored with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give scissoring</RMBLabelM>
<RMBLabelF>forcefully receive scissoring</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Scissoring</rjwSextype>
<tags>
<li>Vaginal</li>
</tags>
<i_tags>
<li>Vaginal</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>ScissoringRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<!-- weird stuff -->
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>ViolateCorpse</defName>
<label>violate corpse</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Violated [RECIPIENT_nameDef]'s corpse.</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was violated by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>violate corpse</RMBLabelM>
<RMBLabelF>f violate corpse</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>None</rjwSextype><!-- hardcoded, overrides dead pawns-->
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<!--<li>ViolateCorpseRP</li>-->
<li>OtherRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>MechImplant</defName>
<label>mechanoid implanting</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Assaulted [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was violated by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>implant chip</RMBLabelM>
<RMBLabelF>ask for implant chip</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>MechImplant</rjwSextype><!-- hardcoded, overrides mech pawns-->
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>MechImplantingRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>OtherRape</defName>
<label>rape</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Raped [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was raped by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>rape</RMBLabelM>
<RMBLabelF>f rape</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Oral</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>OtherRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Rape/Interactions_Rape.xml
|
XML
|
mit
| 11,019
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>AnalRapeF</defName>
<label>anal</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Raped anally [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was anally raped by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully have anal sex</RMBLabelM>
<RMBLabelF>forcefully receive anal sex</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Anal</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>AnalDomRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>VaginalRapeF</defName>
<label>vaginal</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Raped vaginally [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was vaginally raped by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully have vaginal sex</RMBLabelM>
<RMBLabelF>forcefully receive vaginal sex</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Vaginal</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>VaginalDomRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>HandjobRapeF</defName>
<label>handjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully got jerked off by [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forced by [INITIATOR_nameDef] to jerked off.</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a handjob</RMBLabelM>
<RMBLabelF>forcefully receive a handjob</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Handjob</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>ForcedHandjobRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>FootjobRapeF</defName>
<label>footjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forced [RECIPIENT_nameDef] to give a footjob.</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forced to give a footjob to [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a footjob</RMBLabelM>
<RMBLabelF>forcefully receive a footjob</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Footjob</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>ForcedFootjobRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>FingeringRapeF</defName>
<label>fingering</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forced [RECIPIENT_nameDef] to do fingering.</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forced to finger [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give fingering</RMBLabelM>
<RMBLabelF>forcefully receive fingering</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Fingering</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>ForcedFingeringRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>FistingRapeF</defName>
<label>fisting</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forced [RECIPIENT_nameDef] to do fisting.</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forced to give fisting to [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a fisting</RMBLabelM>
<RMBLabelF>forcefully receive a fisting</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Fisting</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>FistingRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>BreastjobRapeF</defName>
<label>breastjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully took a breastjob from [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forced to give a breastjob by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give a breastjob</RMBLabelM>
<RMBLabelF>forcefully receive a breastjob</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Boobjob</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>ForcedBreastjobRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>DoublePenetrationRapeF</defName>
<label>double-penetration</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Double-penetrated [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was double-penetrated by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give double-penetration</RMBLabelM>
<RMBLabelF>forcefully receive double-penetration</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>DoublePenetration</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>DoubleRapeRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseRape">
<defName>ScissoringRapeF</defName>
<label>scissoring</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Forcefully scissored [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was forcibly scissored with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>forcefully give scissoring</RMBLabelM>
<RMBLabelF>forcefully receive scissoring</RMBLabelF>
<sextype1>Rape</sextype1>
<rjwSextype>Scissoring</rjwSextype>
<tags>
<li>Vaginal</li>
</tags>
<i_tags>
<li>Vaginal</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>ForcedScissoringRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Rape/Interactions_RapeF.xml
|
XML
|
mit
| 8,338
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>Rimming</defName>
<label>rimming</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Rimmed [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was rimmed by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give an anal rimming</RMBLabelM>
<RMBLabelF>ask for an anal rimming</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Rimming</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>RimmingRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>Cunnilingus</defName>
<label>cunnilingus</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Gave cunnilingus to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Received cunnilingus from [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a cunnilingus</RMBLabelM>
<RMBLabelF>ask for a cunnilingus</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Cunnilingus</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>CunnilingusRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>Fellatio</defName>
<label>fellatio</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Fellated [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was fellated by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a fellatio</RMBLabelM>
<RMBLabelF>ask for a fellatio</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Fellatio</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</r_tags>
<rulepack_defs>
<li>FellatioRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>Beakjob</defName>
<label>beakjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Gave a beakjob to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Received a beakjob from [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a beakjob</RMBLabelM>
<RMBLabelF>ask for a beakjob</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>None</rjwSextype><!-- hardcoded, overrides Fellatio-->
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</r_tags>
<rulepack_defs>
<li>BeakjobRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>Sixtynine</defName>
<label>69ing</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->69'd with [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->69'd with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>sixtynine(top)</RMBLabelM>
<RMBLabelF>sixtynine(bottom)</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Sixtynine</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Oral</li>
</r_tags>
<rulepack_defs>
<li>SixtynineRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Sex/Interactions_Oral.xml
|
XML
|
mit
| 4,524
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>RimmingF</defName>
<label>rimming</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Rimmed [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was rimmed by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give an anal rimming</RMBLabelM>
<RMBLabelF>ask for an anal rimming</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Rimming</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>RimmingRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>CunnilingusF</defName>
<label>cunnilingus</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Gave cunnilingus to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Received cunnilingus from [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a cunnilingus</RMBLabelM>
<RMBLabelF>ask for a cunnilingus</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Cunnilingus</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>CunnilingusRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>FellatioF</defName>
<label>fellatio</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Fellated [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was fellated by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a fellatio</RMBLabelM>
<RMBLabelF>ask for a fellatio</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Fellatio</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</r_tags>
<rulepack_defs>
<li>FellatioRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>BeakjobF</defName>
<label>beakjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Gave a beakjob to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Received a beakjob from [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a beakjob</RMBLabelM>
<RMBLabelF>ask for a beakjob</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>None</rjwSextype><!-- hardcoded, overrides Fellatio-->
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Penis</li>
<li>Tentacle</li>
<li>Ovi</li>
</r_tags>
<rulepack_defs>
<li>BeakjobRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>SixtynineF</defName>
<label>69ing</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->69'd with [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->69'd with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>sixtynine(top)</RMBLabelM>
<RMBLabelF>sixtynine(bottom)</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Sixtynine</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Oral</li>
</r_tags>
<rulepack_defs>
<li>SixtynineRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Sex/Interactions_OralF.xml
|
XML
|
mit
| 4,529
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>AnalSex</defName>
<label>anal</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Had anal sex with [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Had anal sex with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>start a anal sex</RMBLabelM>
<RMBLabelF>ask for anal sex</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Anal</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>AnalSexRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>VaginalSex</defName>
<label>vaginal</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Had vaginal sex with [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Had vaginal sex with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>start a vaginal sex</RMBLabelM>
<RMBLabelF>ask for vaginal sex</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Vaginal</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>VaginalSexRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>Handjob</defName>
<label>handjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Gave a handjob to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Received a handjob from [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a handjob</RMBLabelM>
<RMBLabelF>ask for a handjob</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Handjob</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>HandjobRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>Footjob</defName>
<label>footjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Gave a footjob to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Received a footjob from [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a footjob</RMBLabelM>
<RMBLabelF>ask for a footjob</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Footjob</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>FootjobRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>Fingering</defName>
<label>fingering</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Fingered [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was fingered by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a fingering</RMBLabelM>
<RMBLabelF>ask for a fingering</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Fingering</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>FingeringRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>Fisting</defName>
<label>fisting</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Fisted [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was fisted by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a fisting</RMBLabelM>
<RMBLabelF>ask for a fisting</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Fisting</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>FistingRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>Breastjob</defName>
<label>breastjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Gave a breastjob to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Received a breastjob from [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a breastjob</RMBLabelM>
<RMBLabelF>ask for a breastjob</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Boobjob</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>BreastjobRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>DoublePenetration</defName>
<label>double-penetration</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Double-penetrated [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was double-penetrated by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>start a double-penetration sex</RMBLabelM>
<RMBLabelF>ask for a double-penetration sex</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>DoublePenetration</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>DoublePenetrationRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>Scissoring</defName>
<label>scissoring</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Scissored with [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Scissored with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>start a scissoring</RMBLabelM>
<RMBLabelF>ask for a scissoring</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Scissoring</rjwSextype>
<tags>
<li>Vaginal</li>
</tags>
<i_tags>
<li>Vaginal</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>ScissoringRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>MutualMasturbation</defName>
<label>mutual masturbation</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Engaged in mutual masturbation with [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Engaged in mutual masturbation with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>start a mutual masturbation</RMBLabelM>
<RMBLabelF>ask for a mutual masturbation</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>MutualMasturbation</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>MutualMasturbationRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Sex/Interactions_Sex.xml
|
XML
|
mit
| 8,974
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>AnalSexF</defName>
<label>anal</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Had anal sex with [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Had anal sex with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>start a anal sex</RMBLabelM>
<RMBLabelF>ask for anal sex</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Anal</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>AnalSexRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>VaginalSexF</defName>
<label>vaginal</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Had vaginal sex with [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Had vaginal sex with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>start a vaginal sex</RMBLabelM>
<RMBLabelF>ask for vaginal sex</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Vaginal</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>VaginalSexRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>HandjobF</defName>
<label>handjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Gave a handjob to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Received a handjob from [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a handjob</RMBLabelM>
<RMBLabelF>ask for a handjob</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Handjob</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>HandjobRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>FootjobF</defName>
<label>footjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Gave a footjob to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Received a footjob from [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a footjob</RMBLabelM>
<RMBLabelF>ask for a footjob</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Footjob</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>FootjobRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>FingeringF</defName>
<label>fingering</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Fingered [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was fingered by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a fingering</RMBLabelM>
<RMBLabelF>ask for a fingering</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Fingering</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>FingeringRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>FistingF</defName>
<label>fisting</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Fisted [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was fisted by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a fisting</RMBLabelM>
<RMBLabelF>ask for a fisting</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Fisting</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>FistingRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>BreastjobF</defName>
<label>breastjob</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Gave a breastjob to [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Received a breastjob from [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>give a breastjob</RMBLabelM>
<RMBLabelF>ask for a breastjob</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Boobjob</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>BreastjobRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>DoublePenetrationF</defName>
<label>double-penetration</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Double-penetrated [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Was double-penetrated by [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>start a double-penetration sex</RMBLabelM>
<RMBLabelF>ask for a double-penetration sex</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>DoublePenetration</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>DoublePenetrationRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>ScissoringF</defName>
<label>scissoring</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Scissored with [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Scissored with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>start a scissoring</RMBLabelM>
<RMBLabelF>ask for a scissoring</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>Scissoring</rjwSextype>
<tags>
<li>Vaginal</li>
</tags>
<i_tags>
<li>Vaginal</li>
</i_tags>
<r_tags>
<li>Vaginal</li>
</r_tags>
<rulepack_defs>
<li>ScissoringRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
<InteractionDef ParentName="RJW_InteractionDefBaseSex">
<defName>MutualMasturbationF</defName>
<label>mutual masturbation</label>
<logRulesInitiator>
<rulesStrings>
<li>r_logentry->Engaged in mutual masturbation with [RECIPIENT_nameDef].</li>
</rulesStrings>
</logRulesInitiator>
<logRulesRecipient>
<rulesStrings>
<li>r_logentry->Engaged in mutual masturbation with [INITIATOR_nameDef].</li>
</rulesStrings>
</logRulesRecipient>
<modExtensions>
<li Class="rjw.InteractionExtension">
<RMBLabelM>start a mutual masturbation</RMBLabelM>
<RMBLabelF>ask for a mutual masturbation</RMBLabelF>
<sextype1>Normal</sextype1>
<rjwSextype>MutualMasturbation</rjwSextype>
<tags>
<li>Oral</li>
</tags>
<i_tags>
<li>Oral</li>
</i_tags>
<r_tags>
<li>Anal</li>
</r_tags>
<rulepack_defs>
<li>MutualMasturbationRP</li>
</rulepack_defs>
</li>
</modExtensions>
</InteractionDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/InteractionDef/Sex/Interactions_SexF.xml
|
XML
|
mit
| 8,984
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!--
<JobDef>
<defName>RJW_AdjustParts</defName>
<driverClass>rjw.JobDriver_AdjustParts</driverClass>
<reportString>changing artificial parts size.</reportString>
<allowOpportunisticPrefix>true</allowOpportunisticPrefix>
</JobDef>
-->
</Defs>
|
jojo1541/rjw
|
1.2/Defs/JobDefs/Jobs_Adjustparts.xml
|
XML
|
mit
| 301
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<JobDef>
<defName>GettinBred</defName>
<driverClass>rjw.JobDriver_SexBaseRecieverRaped</driverClass>
<reportString>gettin' bred.</reportString>
<checkOverrideOnDamage>Never</checkOverrideOnDamage>
<casualInterruptible>false</casualInterruptible>
</JobDef>
<JobDef>
<defName>Breed</defName>
<driverClass>rjw.JobDriver_Breeding</driverClass>
<reportString>breeding</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
<JobDef>
<defName>RJW_Mate</defName>
<driverClass>rjw.JobDriver_Mating</driverClass>
<reportString>mating</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
<JobDef>
<defName>Bestiality</defName>
<driverClass>rjw.JobDriver_BestialityForMale</driverClass>
<reportString>lovin' animal</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
<JobDef>
<defName>BestialityForFemale</defName>
<driverClass>rjw.JobDriver_BestialityForFemale</driverClass>
<reportString>lovin' animal</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/JobDefs/Jobs_Bestiality.xml
|
XML
|
mit
| 1,141
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<JobDef>
<defName>StruggleInBondageGear</defName>
<driverClass>rjw.JobDriver_StruggleInBondageGear</driverClass>
<reportString>struggling</reportString>
</JobDef>
<JobDef>
<defName>UnlockBondageGear</defName>
<driverClass>rjw.JobDriver_UseItemOn</driverClass>
<reportString>unlocking</reportString>
</JobDef>
<JobDef>
<defName>GiveBondageGear</defName>
<driverClass>rjw.JobDriver_UseItemOn</driverClass>
<reportString>equipping</reportString>
</JobDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/JobDefs/Jobs_Bondage.xml
|
XML
|
mit
| 534
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<JobDef>
<defName>CleanSelf</defName>
<driverClass>rjw.JobDriver_CleanSelf</driverClass>
<reportString>cleaning self</reportString>
<casualInterruptible>true</casualInterruptible>
</JobDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/JobDefs/Jobs_CleanSelf.xml
|
XML
|
mit
| 255
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<JobDef>
<defName>RJW_Masturbate</defName>
<driverClass>rjw.JobDriver_Masturbate</driverClass>
<reportString>masturbatin'.</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/JobDefs/Jobs_Masturbate.xml
|
XML
|
mit
| 262
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<!--
<JobDef>
<defName>MilkHuman</defName>
<driverClass>rjw.JobDriver_MilkHuman</driverClass>
<reportString>milking TargetA.</reportString>
<allowOpportunisticPrefix>true</allowOpportunisticPrefix>
</JobDef>
-->
</Defs>
|
jojo1541/rjw
|
1.2/Defs/JobDefs/Jobs_Milk.xml
|
XML
|
mit
| 280
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<JobDef>
<defName>ViolateCorpse</defName>
<driverClass>rjw.JobDriver_ViolateCorpse</driverClass>
<reportString>violating corpse</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/JobDefs/Jobs_Necro.xml
|
XML
|
mit
| 267
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<JobDef>
<defName>Quickie</defName>
<driverClass>rjw.JobDriver_SexQuick</driverClass>
<reportString>doing quickie with someone.</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
<JobDef>
<defName>GettingQuickie</defName>
<driverClass>rjw.JobDriver_SexBaseRecieverQuickie</driverClass>
<reportString>lovin'.</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/JobDefs/Jobs_Quickie.xml
|
XML
|
mit
| 482
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<JobDef>
<defName>GettinRaped</defName>
<driverClass>rjw.JobDriver_SexBaseRecieverRaped</driverClass>
<reportString>gettin' raped.</reportString>
<checkOverrideOnDamage>Never</checkOverrideOnDamage>
<casualInterruptible>false</casualInterruptible>
</JobDef>
<JobDef>
<defName>RapeComfortPawn</defName>
<driverClass>rjw.JobDriver_RapeComfortPawn</driverClass>
<reportString>rapin' CP</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
<JobDef>
<defName>RandomRape</defName>
<driverClass>rjw.JobDriver_RandomRape</driverClass>
<reportString>Raping</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
<JobDef Class="rjw.JobDef_RapeEnemy">
<defName>RapeEnemy</defName>
<driverClass>rjw.JobDriver_RapeEnemy</driverClass>
<reportString>Rapin' Enemy</reportString>
<casualInterruptible>false</casualInterruptible>
<priority>100</priority>
<!-- High value is high priority. -->
<!-- Add defNames to do this type of rape-->
<TargetDefNames>
</TargetDefNames>
</JobDef>
<JobDef Class="rjw.JobDef_RapeEnemy">
<defName>RapeEnemyByInsect</defName>
<!-- Rape to plant egg. see Hediffs_EnemyImplants.xml more detail-->
<driverClass>rjw.JobDriver_RapeEnemyByInsect</driverClass>
<reportString>Rapin' Enemy</reportString>
<casualInterruptible>false</casualInterruptible>
<priority>1000</priority>
<TargetDefNames>
</TargetDefNames>
</JobDef>
<JobDef Class="rjw.JobDef_RapeEnemy">
<defName>RapeEnemyByAnimal</defName>
<!-- Mainly do nothing. -->
<driverClass>rjw.JobDriver_RapeEnemyByAnimal</driverClass>
<reportString>Rapin' Enemy</reportString>
<casualInterruptible>false</casualInterruptible>
<priority>1000</priority>
<TargetDefNames>
</TargetDefNames>
</JobDef>
<JobDef Class="rjw.JobDef_RapeEnemy">
<defName>RapeEnemyByMech</defName>
<!-- Rape to Implant something. see Hediffs_EnemyImplants.xml more detail-->
<driverClass>rjw.JobDriver_RapeEnemyByMech</driverClass>
<reportString>Rapin' Enemy</reportString>
<casualInterruptible>false</casualInterruptible>
<priority>1000</priority>
<TargetDefNames>
</TargetDefNames>
</JobDef>
<JobDef Class="rjw.JobDef_RapeEnemy">
<defName>RapeEnemyToParasite</defName>
<!-- Rape to pregnant same kind of male.-->
<driverClass>rjw.JobDriver_RapeEnemyToParasite</driverClass>
<reportString>Rapin' Enemy</reportString>
<casualInterruptible>false</casualInterruptible>
<priority>2000</priority>
<TargetDefNames>
</TargetDefNames>
</JobDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/JobDefs/Jobs_Rape.xml
|
XML
|
mit
| 2,595
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<JobDef>
<defName>JoinInBed</defName>
<driverClass>rjw.JobDriver_JoinInBed</driverClass>
<reportString>joining someone in bed.</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
<JobDef>
<defName>GettinLoved</defName>
<driverClass>rjw.JobDriver_SexBaseRecieverLoved</driverClass>
<reportString>lovin'.</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
<JobDef>
<defName>GettinLicked</defName>
<driverClass>rjw.JobDriver_SexBaseRecieverLoved</driverClass>
<reportString>gettin' licked.</reportString>
<checkOverrideOnDamage>Never</checkOverrideOnDamage>
<casualInterruptible>false</casualInterruptible>
</JobDef>
<JobDef>
<defName>GettinSucked</defName>
<driverClass>rjw.JobDriver_SexBaseRecieverLoved</driverClass>
<reportString>gettin' sucked.</reportString>
<checkOverrideOnDamage>Never</checkOverrideOnDamage>
<casualInterruptible>false</casualInterruptible>
</JobDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/JobDefs/Jobs_Sex.xml
|
XML
|
mit
| 1,023
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<JobDef>
<defName>WhoreIsServingVisitors</defName>
<driverClass>rjw.JobDriver_WhoreIsServingVisitors</driverClass>
<reportString>serving visitors</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
<JobDef>
<defName>WhoreInvitingVisitors</defName>
<driverClass>rjw.JobDriver_WhoreInvitingVisitors</driverClass>
<reportString>attempting hookup</reportString>
<casualInterruptible>false</casualInterruptible>
</JobDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/JobDefs/Jobs_Whoring.xml
|
XML
|
mit
| 515
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<MainButtonDef>
<defName>RJW_Brothel</defName>
<label>Brothel</label>
<description>List whores in the area.</description>
<tabWindowClass>rjw.MainTab.MainTabWindow_Brothel</tabWindowClass>
<order>53</order>
<minimized>True</minimized>
<iconPath>UI/Commands/Service_off</iconPath>
</MainButtonDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/MainTab/MainButtons.xml
|
XML
|
mit
| 371
|
<?xml version="1.0" encoding="utf-8"?>
<Defs>
<PawnColumnDef>
<defName>RJW_IsWhore</defName>
<headerTip>pawn is a whore</headerTip>
<headerIcon>UI/Tab/Service_off</headerIcon>
<workerClass>rjw.MainTab.PawnColumnWorker_IsWhore</workerClass>
<sortable>true</sortable>
<width>80</width>
</PawnColumnDef>
<PawnColumnDef>
<defName>RJW_IsPrisoner</defName>
<headerTip>pawn is prisoner or slave</headerTip>
<headerIcon>UI/Tab/ComfortPrisoner_off</headerIcon>
<workerClass>rjw.MainTab.PawnColumnWorker_IsPrisoner</workerClass>
<sortable>true</sortable>
<width>80</width>
</PawnColumnDef>
<PawnColumnDef>
<defName>RJW_WhoreExperience</defName>
<headerTip>whoring experience</headerTip>
<label>Experience</label>
<workerClass>rjw.MainTab.PawnColumnWorker_WhoreExperience</workerClass>
<sortable>true</sortable>
<width>100</width>
</PawnColumnDef>
<PawnColumnDef>
<defName>RJW_PriceRangeOfWhore</defName>
<headerTip>price range for whore</headerTip>
<label>Price</label>
<workerClass>rjw.MainTab.PawnColumnWorker_PriceRangeOfWhore</workerClass>
<sortable>true</sortable>
<width>100</width>
</PawnColumnDef>
<PawnColumnDef>
<defName>RJW_EarnedMoneyByWhore</defName>
<headerTip>money earned(total)</headerTip>
<label>Earned</label>
<workerClass>rjw.MainTab.PawnColumnWorker_EarnedMoneyByWhore</workerClass>
<sortable>true</sortable>
<width>100</width>
</PawnColumnDef>
<PawnColumnDef>
<defName>RJW_CountOfWhore</defName>
<headerTip>clients served</headerTip>
<label>Clients</label>
<workerClass>rjw.MainTab.PawnColumnWorker_CountOfWhore</workerClass>
<sortable>true</sortable>
<width>100</width>
</PawnColumnDef>
<PawnColumnDef>
<defName>RJW_AverageMoneyByWhore</defName>
<headerTip>money earned(average)</headerTip>
<label>Average</label>
<workerClass>rjw.MainTab.PawnColumnWorker_AverageMoneyByWhore</workerClass>
<sortable>true</sortable>
<width>100</width>
</PawnColumnDef>
<PawnColumnDef>
<defName>RJW_WhoreMood</defName>
<headerTip>mood of pawn</headerTip>
<label>Mood</label>
<workerClass>rjw.MainTab.PawnColumnWorker_Mood</workerClass>
<sortable>true</sortable>
<width>100</width>
</PawnColumnDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/MainTab/PawnColumnDefs/PawnColumns.xml
|
XML
|
mit
| 2,216
|
<?xml version="1.0" encoding="utf-8"?>
<Defs>
<PawnTableDef>
<defName>RJW_Brothel</defName>
<workerClass>rjw.MainTab.PawnTable_Whores</workerClass>
<columns>
<li>Label</li>
<li>RJW_IsWhore</li>
<li>RJW_IsPrisoner</li>
<li>RJW_WhoreMood</li>
<li>GapTiny</li>
<li>RJW_CountOfWhore</li>
<li>RJW_EarnedMoneyByWhore</li>
<li>RJW_AverageMoneyByWhore</li>
<li>RJW_WhoreExperience</li>
<li>GapTiny</li>
<li>RJW_PriceRangeOfWhore</li>
<li>RemainingSpace</li>
</columns>
</PawnTableDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/MainTab/PawnTableDefs.xml
|
XML
|
mit
| 536
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<MeditationFocusDef>
<defName>Sex</defName>
<label>Sex</label>
</MeditationFocusDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/MeditationFocusDefs/MeditationFocuses.xml
|
XML
|
mit
| 145
|
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<rjw.SexualMentalStateDef Abstract="True" Name="RJW_BaseMentalState" ParentName="BaseMentalState">
<stateClass>rjw.SexualMentalState</stateClass>
<workerClass>rjw.SexualMentalStateWorker</workerClass>
</rjw.SexualMentalStateDef>
<rjw.SexualMentalBreakDef Abstract="True" Name="BaseSexualMentalBreak">
<commonalityMultiplierBySexNeed>
<points>
<li>(0, 2)</li>
<li>(50, 0)</li>
</points>
</commonalityMultiplierBySexNeed>
</rjw.SexualMentalBreakDef>
<rjw.SexualMentalBreakDef ParentName="BaseSexualMentalBreak">
<defName>RandomRape</defName>
<mentalState>RandomRape</mentalState>
<baseCommonality>1.5</baseCommonality>
<intensity>Extreme</intensity>
<commonalityMultiplierBySexNeed>
<points>
<li>(0, 2)</li>
<li>(50, 0)</li>
</points>
</commonalityMultiplierBySexNeed>
</rjw.SexualMentalBreakDef>
<rjw.SexualMentalStateDef ParentName="RJW_BaseMentalState">
<defName>RandomRape</defName>
<stateClass>rjw.MentalState_RandomRape</stateClass>
<label>random rape</label>
<category>Malicious</category>
<prisonersCanDo>true</prisonersCanDo>
<colonistsOnly>false</colonistsOnly>
<minTicksBeforeRecovery>30000</minTicksBeforeRecovery>
<recoveryMtbDays>0.8</recoveryMtbDays>
<maxTicksBeforeRecovery>80000</maxTicksBeforeRecovery>
<nameColor>(0.5, 0.9, 0.5)</nameColor>
<beginLetterLabel>random rape</beginLetterLabel>
<beginLetter>{0} is sexually frustrated and is looking to a rape someone.</beginLetter>
<beginLetterDef>ThreatSmall</beginLetterDef>
<recoveryMessage>{0} is no longer raping randomly.</recoveryMessage>
<baseInspectLine>Mental state: Random Rape</baseInspectLine>
<recoverFromSleep>true</recoverFromSleep>
<!--<recoverFromDowned>true</recoverFromDowned>-->
<unspawnedCanDo>false</unspawnedCanDo>
</rjw.SexualMentalStateDef>
</Defs>
|
jojo1541/rjw
|
1.2/Defs/MentalStateDefs/MentalState_Rape.xml
|
XML
|
mit
| 1,883
|