示例#1
0
        // The variables to copy.
        protected Chronic(Chronic other) : base(other)
        {
            Age          = other.Age;
            SeedingAge   = other.SeedingAge;
            FloweringAge = other.FloweringAge;
            DryingAge    = other.DryingAge;
            MaxHealth    = other.MaxHealth;

            CBD      = other.CBD;
            THC      = other.THC;
            MaxYield = other.MaxYield;
            Yield    = other.Yield;
            Quality  = other.Quality;
            Health   = other.Health;
            Height   = other.Height;

            Water = other.Water;
            Stage = other.Stage;
            Food  = other.Food;
            Light = other.Light;
            Type  = other.Type;
        }
示例#2
0
        // The variables to copy.
        protected Chronic(Chronic other)
            : base(other)
        {
            Age = other.Age;
            SeedingAge = other.SeedingAge;
            FloweringAge = other.FloweringAge;
            DryingAge = other.DryingAge;
            MaxHealth = other.MaxHealth;

            CBD = other.CBD;
            THC = other.THC;
            MaxYield = other.MaxYield;
            Yield = other.Yield;
            Quality = other.Quality;
            Health = other.Health;
            Height = other.Height;

            Water = other.Water;
            Stage = other.Stage;
            Food = other.Food;
            Light = other.Light;
            Type = other.Type;
        }