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;
|
2022-12-01 14:29:26 +00:00
|
|
|
|
public String raceGroup;
|
|
|
|
|
public List<string> raceNames;
|
|
|
|
|
public List<string> pawnKindNames;
|
2022-12-18 09:25:57 +00:00
|
|
|
|
public List<BestialityGeneInheritanceDef> genes;
|
2022-12-17 19:52:10 +00:00
|
|
|
|
//public List<float> genechances;
|
2022-12-01 14:29:26 +00:00
|
|
|
|
public String hybridName;
|
|
|
|
|
}
|
|
|
|
|
}
|