Files
Craftimizer/Simulator/Recipe.cs
T
2023-06-19 10:03:57 -07:00

18 lines
549 B
C#

namespace Craftimizer.Simulator;
public sealed record RecipeInfo
{
public bool IsExpert { get; init; }
public int ClassJobLevel { get; init; }
public int RLvl { get; init; }
public ushort ConditionsFlag { get; init; }
public int MaxDurability { get; init; }
public int MaxQuality { get; init; }
public int MaxProgress { get; init; }
public int QualityModifier { get; init; }
public int QualityDivider { get; init; }
public int ProgressModifier { get; init; }
public int ProgressDivider { get; init; }
}