GeneEggLaying (species-fixed) selects the conception cycle: viviparous animals carry to a live birth (existing path); oviparous animals, after the same gravid period, LAY eggs instead. New Egg entity (carries the already-bred offspring genome) + EggSystem incubates and hatches it into a baby. AnimalPregnancySystem branches on the mother's birth type. Adds an oviparous showcase species, Chicken. Eggs are serialized (WorldSave.Eggs) like corpses, so clutches survive save/load. Also lays the foundation for creating any species or hybrid (full command/UI deferred): AnimalSet.HybridGenome(base, other) produces a cross anchored to a base species' body/gene-set with shared genes blended Mendelian-style — so Create(species, GenerateGenome) makes any species and Create(species, HybridGenome) makes any hybrid. EggTexture on AnimalDef (defaults to the seed dot placeholder); reproduction line added to the `animal` console command. Build + --check-content clean (41 genes, 40 traits). Not GUI-verified. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
137 lines
4.2 KiB
JSON
137 lines
4.2 KiB
JSON
{
|
|
"type": "Animal",
|
|
// Виды-животные: подтип Pawn (kind=animal) + базовый геном вида из общих Gene-дефов (см. Defs/Genes/).
|
|
// Особь при спавне получает аллели вокруг этих баз, фенотип — формулами генов. Диета задаётся ГЕНАМИ
|
|
// (herbivory/carnivory/omnivory): олень — травоядный, волк — хищник, кабан — всеядный. Хищники несут
|
|
// боевые параметры (attack*) и охотятся на добычу не крупнее себя; жертвы убегают (см. AnimalSystems).
|
|
"defs": [
|
|
{
|
|
"defName": "Deer",
|
|
"label": "pawn.deer",
|
|
"kind": "animal",
|
|
"texture": "things/pawn/animal/deer/DeerFemale_east",
|
|
"maleTexture": "things/pawn/animal/deer/DeerMale_east",
|
|
"babyTexture": "things/pawn/animal/deer/DeerBaby_east",
|
|
"corpseTexture": "things/pawn/animal/deer/Dessicated_DeerFemale_east",
|
|
"body": "Quadruped",
|
|
"diet": ["plant"],
|
|
"spawnPer1000Cells": 2.5,
|
|
"genome": {
|
|
"GeneMaxBodySize": 1.5,
|
|
"GeneMetabolism": 1.0,
|
|
"GeneMoveSpeed": 1.2,
|
|
"GeneBloodVolume": 1.4,
|
|
"GeneVision": 1.3,
|
|
"GeneBrainSize": 0.45,
|
|
"GeneInsulation": 0.55,
|
|
"GeneFurColor": 0.45,
|
|
"GeneMaturityAge": 90,
|
|
"GeneLifespan": 360,
|
|
"GeneBreedingSeason": 2,
|
|
"GeneGestationDays": 30,
|
|
"GeneLitterSize": 1,
|
|
"GeneHerbivory": 1.0,
|
|
"GeneToxinTolerance": 0.1
|
|
}
|
|
},
|
|
|
|
{
|
|
"defName": "Wolf",
|
|
"label": "pawn.wolf",
|
|
"kind": "animal",
|
|
"texture": "things/pawn/animal/wolf_timber/Wolf_Timber_east",
|
|
"maleTexture": "things/pawn/animal/wolf_timber/Wolf_Timber3_east",
|
|
"body": "Quadruped",
|
|
"diet": ["meat"],
|
|
"spawnPer1000Cells": 0.8,
|
|
"baseSpeed": 32,
|
|
"visionCells": 18,
|
|
"attackRangeCells": 1.3,
|
|
"attackDamage": 80,
|
|
"attackBleed": 3.0,
|
|
"attackBloodLoss": 5.0,
|
|
"genome": {
|
|
"GeneMaxBodySize": 1.6,
|
|
"GeneMetabolism": 1.1,
|
|
"GeneMoveSpeed": 1.4,
|
|
"GeneBloodVolume": 1.3,
|
|
"GeneVision": 1.5,
|
|
"GeneBrainSize": 0.5,
|
|
"GeneInsulation": 0.6,
|
|
"GeneFurColor": 0.7,
|
|
"GeneMaturityAge": 70,
|
|
"GeneLifespan": 240,
|
|
"GeneBreedingSeason": 3,
|
|
"GeneGestationDays": 35,
|
|
"GeneLitterSize": 4,
|
|
"GeneCarnivory": 1.0
|
|
}
|
|
},
|
|
|
|
{
|
|
"defName": "WildBoar",
|
|
"label": "pawn.boar",
|
|
"kind": "animal",
|
|
"texture": "things/pawn/animal/wildboar/WildBoar_east",
|
|
"body": "Quadruped",
|
|
"diet": ["plant", "meat"],
|
|
"spawnPer1000Cells": 1.0,
|
|
"baseSpeed": 26,
|
|
"visionCells": 13,
|
|
"attackRangeCells": 1.2,
|
|
"attackDamage": 45,
|
|
"attackBleed": 1.8,
|
|
"attackBloodLoss": 3.0,
|
|
"genome": {
|
|
"GeneMaxBodySize": 1.3,
|
|
"GeneMetabolism": 1.2,
|
|
"GeneMoveSpeed": 1.0,
|
|
"GeneBloodVolume": 1.2,
|
|
"GeneVision": 1.0,
|
|
"GeneBrainSize": 0.42,
|
|
"GeneInsulation": 0.5,
|
|
"GeneFurColor": 0.85,
|
|
"GeneMaturityAge": 80,
|
|
"GeneLifespan": 280,
|
|
"GeneBreedingSeason": 0,
|
|
"GeneGestationDays": 28,
|
|
"GeneLitterSize": 5,
|
|
"GeneHerbivory": 0.4,
|
|
"GeneCarnivory": 0.2,
|
|
"GeneOmnivory": 0.85,
|
|
"GeneToxinTolerance": 0.25
|
|
}
|
|
},
|
|
|
|
{
|
|
"defName": "Chicken",
|
|
"label": "pawn.chicken",
|
|
"kind": "animal",
|
|
"texture": "things/pawn/animal/chicken/Chicken_east",
|
|
"body": "Quadruped",
|
|
"diet": ["plant"],
|
|
"spawnPer1000Cells": 1.5,
|
|
"baseSpeed": 22,
|
|
"visionCells": 10,
|
|
"genome": {
|
|
"GeneMaxBodySize": 0.5,
|
|
"GeneMetabolism": 1.3,
|
|
"GeneMoveSpeed": 0.9,
|
|
"GeneBloodVolume": 0.7,
|
|
"GeneVision": 1.1,
|
|
"GeneBrainSize": 0.3,
|
|
"GeneInsulation": 0.45,
|
|
"GeneFurColor": 0.6,
|
|
"GeneMaturityAge": 50,
|
|
"GeneLifespan": 180,
|
|
"GeneBreedingSeason": 1,
|
|
"GeneGestationDays": 12,
|
|
"GeneLitterSize": 6,
|
|
"GeneHerbivory": 0.8,
|
|
"GeneToxinTolerance": 0.15,
|
|
"GeneEggLaying": 1.0
|
|
}
|
|
}
|
|
]
|
|
}
|