private Material(string edname, MaterialCategory category, Rarity rarity, string symbol = null, decimal?goodpctbody = null, decimal?greatpctbody = null) : base(edname, edname) { this.Category = category; this.symbol = symbol; this.rarity = rarity; this.goodpctbody = goodpctbody; // top 25% from top value ever recorded this.greatpctbody = greatpctbody; // top 10% from top value ever recorded }
private Material(string edname, MaterialCategory category, Rarity rarity, string symbol = null, decimal?goodpctbody = null, decimal?greatpctbody = null) : base(edname, edname) { this.category = category; this.symbol = symbol; this.rarity = rarity; this.goodpctbody = goodpctbody; this.greatpctbody = greatpctbody; }