-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: Crafting Calculation Improvements #661
base: develop
Are you sure you want to change the base?
Feat: Crafting Calculation Improvements #661
Conversation
…re applicable. Tweaks to craft analysis to interpret the thing being analyzed better. Adjust pawn crafting assets and crafting tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Christ
@@ -42,7 +42,9 @@ public class AssetRepository | |||
public const string JobValueShopKey = "JobValueShop.csv"; | |||
public const string StampBonusKey = "StampBonus.csv"; | |||
public const string SpecialShopKey = "SpecialShops.json"; | |||
public const string PawnCostReductionKey = "PawnCostReduction.json"; | |||
public const string PawnCostReductionKey = "PawnCostReduction.json"; | |||
public const string PawnCraftSkillCostRateKey = "PawnCraftSkillCostRate.csv"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand why we keep moving things from json back to CSV. CSV is a terrible format.
/// <summary> | ||
/// TODO: Extract to asset | ||
/// </summary> | ||
public static readonly List<CDataRegisteredLegendPawnInfo> CraftMasterLegendPawnInfoList = new List<CDataRegisteredLegendPawnInfo> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not make a json for this now?
Checklist:
develop
branch