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(SaguaroRibItem), new Range(0, 30), 1)
new SpeciesResource(typeof(SaguaroRibItem), new Range(0, 30), 1),
};
this.ResourceBonusAtGrowth = 0.9f;
// Visuals
// Climate
this.ReleasesCO2TonsPerDay = -0.05f;
// 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.ResourceConstraints.Add(new ResourceConstraint() { LayerName = "SoilMoisture", HalfSpeedConcentration = 0.1f, MaxResourceContent = 0.2f });
this.CapacityConstraints.Add(new CapacityConstraint() { CapacityLayerName = "FertileGround", ConsumedCapacityPerPop = 4 });
this.CapacityConstraints.Add(new CapacityConstraint() { CapacityLayerName = "CanopySpace", ConsumedCapacityPerPop = 15 });
this.BlanketSpawnPercent = 0.08f;
this.BlanketSpawnPercent = 0.6f;
this.IdealTemperatureRange = new Range(0.8f, 0.9f);
this.IdealMoistureRange = new Range(0.05f, 0.25f);
this.IdealWaterRange = new Range(0, 0.1f);