mirror of
https://gitgud.io/Ed86/rjw-std.git
synced 2024-08-14 23:57:23 +00:00
65afc7f93d
fixed boobitis added mod options other stuff
20 lines
526 B
C#
20 lines
526 B
C#
using System.Collections.Generic;
|
|
using Verse;
|
|
|
|
namespace STD
|
|
{
|
|
/// <summary>
|
|
/// Defines a disease that has a chance to spread during sex.
|
|
/// </summary>
|
|
public class std_def : Def
|
|
{
|
|
public HediffDef hediff_def;
|
|
public HediffDef cohediff_def = null;
|
|
public float catch_chance;
|
|
public float environment_pitch_chance = 0.0f;
|
|
public float spawn_chance = 0.0f;
|
|
public float spawn_severity = 0.0f;
|
|
public float autocure_below_severity = -1.0f;
|
|
public List<BodyPartDef> appliedOnFixedBodyParts = null;
|
|
}
|
|
}
|