2022-12-01 14:29:26 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Verse;
|
|
|
|
|
using rjw;
|
|
|
|
|
|
|
|
|
|
namespace RJW_BGS
|
|
|
|
|
{
|
|
|
|
|
public class RaceGeneDef : Def
|
|
|
|
|
{
|
2022-12-22 18:04:56 +00:00
|
|
|
|
public int priority;
|
2023-01-15 12:30:33 +00:00
|
|
|
|
public string raceGroup; //keeping this for backwards compatibility
|
|
|
|
|
public List<string> raceGroups; //racegroup, but in list form so multiple can be entered, preference to use this over racegroup
|
2022-12-01 14:29:26 +00:00
|
|
|
|
public List<string> raceNames;
|
|
|
|
|
public List<string> pawnKindNames;
|
2022-12-18 09:25:57 +00:00
|
|
|
|
public List<BestialityGeneInheritanceDef> genes;
|
2023-01-23 13:06:06 +00:00
|
|
|
|
public string hybridName;
|
2022-12-01 14:29:26 +00:00
|
|
|
|
}
|
|
|
|
|
}
|