Scripts/TreeSkills/SkillNodeData.cs
namespace Milaine.TreeSkills;

public enum SkillCategory {
  Dollars,
  Wallet,
  Investment,
  Dividends,
  WalletPlus,
  DollarAutomatic
}

public class SkillNodeData {
  public string Id { get; set; }
  public string Name { get; set; }
  public string Description { get; set; }
  public string KeyDescription { get; set; }
  public int Cost { get; set; }
  public SkillCategory Category { get; set; }
  public float Point { get; set; }

  public int Row { get; set; }
  public int Column { get; set; }

  public string Icon { get; set; } = "🌕";

  public bool IsRoot { get; set; }
}