namespace Eco.Mods.Organisms { using System.Collections.Generic; using Eco.Gameplay.Animals; using Eco.Mods.TechTree; using Eco.Shared.Localization; using Eco.Shared.Math; using Eco.Simulation.Agents; using Eco.Simulation.Types; public class Turkey : AnimalEntity { public Turkey(Animal parent, Vector3 pos, bool corpse = false) : base(parent, pos, species, corpse) { } static AnimalSpecies species; public class TurkeySpecies : AnimalSpecies { public TurkeySpecies() : base() { species = this; this.InstanceType = typeof(Turkey); // Info this.Name = "Turkey"; this.DisplayName = Localizer.DoStr("Turkey"); // Lifetime this.MaturityAgeDays = 1f; // Food this.FoodSources = new List() { typeof(Bunchgrass), typeof(Camas) }; this.CalorieValue = 75f; // Movement this.Flying = false; this.Swimming = false; // Resources this.ResourceList = new List() { new SpeciesResource(typeof(TurkeyCarcassItem), new Range(1f, 1f)), }; this.ResourceBonusAtGrowth = 0.9f; // Behavior this.BrainType = typeof(LandAnimalBrain); this.WanderingSpeed = 1f; this.Speed = 3.5f; this.Health = 1.8f; this.Damage = 1f; this.DelayBetweenAttacksRangeSec = new Range(0.8f, 2.5f); this.FearFactor = 0.5f; this.FleePlayers = true; this.AttackRange = 1f; this.TimeLayToStand = 3.5f; // Climate this.ReleasesCO2ppmPerDay = 0f; } } } }