Beispiel #1
0
 protected bool Equals(CraftItemValues other)
 {
     return(Type == other.Type &&
            CraftItemId == other.CraftItemId &&
            CraftValue == other.CraftValue &&
            RankMin == other.RankMin &&
            RankMax == other.RankMax &&
            Ingredient1Id == other.Ingredient1Id &&
            Ingredient1Total == other.Ingredient1Total &&
            Ingredient2Id == other.Ingredient2Id &&
            Ingredient2Total == other.Ingredient2Total &&
            Ingredient3Id == other.Ingredient3Id &&
            Ingredient3Total == other.Ingredient3Total &&
            Ingredient4Id == other.Ingredient4Id &&
            Ingredient4Total == other.Ingredient4Total &&
            OpenKeyRecipeId == other.OpenKeyRecipeId &&
            OpenCondition == other.OpenCondition &&
            OpenParameter == other.OpenParameter &&
            FirstTimeBonusSpecialEffectId == other.FirstTimeBonusSpecialEffectId &&
            FirstBonusType.SequenceEqual(other.FirstBonusType) &&
            FirstBonusValue.SequenceEqual(other.FirstBonusValue) &&
            Alkhahest == other.Alkhahest);
 }
 public CraftItemEntry(string key, CraftItemValues value)
 {
     Key   = key;
     Value = value;
 }