This commit is contained in:
Hactarus 2020-12-04 11:26:38 +00:00
parent a998ba271d
commit 45a93682a2
10 changed files with 56 additions and 53 deletions

View file

@ -79,20 +79,20 @@ namespace Eco.Mods.Organisms
this.PickableAtPercent = 0;
this.ResourceList = new List<SpeciesResource>()
{
new SpeciesResource(typeof(OakLogItem), new Range(0, 80), 1)
new SpeciesResource(typeof(OakLogItem), new Range(0, 80), 1),
};
this.ResourceBonusAtGrowth = 0.9f;
// Visuals
// Climate
this.ReleasesCO2TonsPerDay = -0.2f;
// WorldLayers
this.MaxGrowthRate = 0.01f;
this.MaxDeathRate = 0.005f;
this.MaxGrowthRate = 0.02f;
this.MaxDeathRate = 0.01f;
this.SpreadRate = 0.001f;
this.ResourceConstraints.Add(new ResourceConstraint() { LayerName = "SoilMoisture", HalfSpeedConcentration = 0.0f, MaxResourceContent = 1.0f });
this.CapacityConstraints.Add(new CapacityConstraint() { CapacityLayerName = "FertileGround", ConsumedCapacityPerPop = 1 });
this.CapacityConstraints.Add(new CapacityConstraint() { CapacityLayerName = "CanopySpace", ConsumedCapacityPerPop = 45 });
this.BlanketSpawnPercent = 0.07f;
this.ResourceConstraints.Add(new ResourceConstraint() { LayerName = "SoilMoisture", HalfSpeedConcentration = 0.1f, MaxResourceContent = 0.2f });
this.CapacityConstraints.Add(new CapacityConstraint() { CapacityLayerName = "FertileGround", ConsumedCapacityPerPop = 20 });
this.CapacityConstraints.Add(new CapacityConstraint() { CapacityLayerName = "CanopySpace", ConsumedCapacityPerPop = 50 });
this.BlanketSpawnPercent = 0.5f;
this.IdealTemperatureRange = new Range(0.45f, 0.76f);
this.IdealMoistureRange = new Range(0.43f, 0.47f);
this.IdealWaterRange = new Range(0, 0.1f);