internal EconomyReformValue(string name, string description, int id, DoubleConditionsList condition, bool allowForeighnIvestments, TaxationForPoor.PoorTaxValue maxTax = null, TaxationForPoor.PoorTaxValue minTax = null) : base(name, description, id, condition) { AllowForeignInvestments = allowForeighnIvestments; this.minTax = minTax; this.maxTax = maxTax; }
internal GovernmentReformValue(string name, string description, int id, DoubleConditionsList condition, string prefix, int MaxSizeLimitForDisloyaltyModifier, float scienceModifier, TaxationForPoor.PoorTaxValue defaultPoorTax = null, TaxationForRich.RichTaxValue defaultRichTax = null) : base(name, description, id, condition) { Prefix = prefix; this.MaxSizeLimitForDisloyaltyModifier = MaxSizeLimitForDisloyaltyModifier; ScienceModifier = scienceModifier; this.defaultPoorTax = defaultPoorTax; this.defaultRichTax = defaultRichTax; }