What problem does it solve? Game designers struggle to verify whether numeric changes to loan growth, card payouts, or starting money keep the game economy fair and sustainable. This Skill reads the actual Unity configuration files and produces a structured balance report instead of relying on gut feeling. ## Core Features & Use Cases - Loan Curve Analysis: Computes the first 10 rounds of loan amounts from loanBaseAmount and loanGrowthFactor, checking whether exponential growth outpaces player income. - Card Yield Audit: Aggregates per-round income ranges for tenant cards and facility card bonuses, flagging overpowered cards, useless cards, and abnormal cost-to-yield ratios. - Economy Sustainability Check: Estimates net income per round for a standard game, detects infinite resource loops or unwinnable states, and verifies starting money covers the first preparation round. - Use Case: After tweaking loanGrowthFactor in GameConfig.asset, run the check to confirm players can still survive the worst-case zero-income scenario for a reasonable number of rounds. ## Quick Start Run a balance check on the loan system to verify the loan growth curve stays beatable for the first ten rounds.