Files
corrosion-admin-panel/docs/reference-repos/icehunter/cmd/dune-admin/keystones.go
Vantz Stockwell 651a35d4be
All checks were successful
CI / backend-types (push) Successful in 10s
CI / frontend-build (push) Successful in 15s
CI / agent-tests (push) Successful in 39s
CI / integration (push) Successful in 22s
docs(reference): import Dune: Awakening server-manager references
Phase 2 references for the host-agent Dune adapter, moved out of volatile /tmp
into docs/reference-repos/ (per Commander). Three upstream projects, .git +
node_modules + compiled binaries stripped (16MB source). Nested AI-instruction
files (.claude/, CLAUDE.md) removed so they don't pollute Corrosion sessions.

- icehunter/    dune-admin (Go+React) — 4 control planes; SETUP_DOCKER.md is the
                closest analog to our agent's Dune docker control plane (compose
                lifecycle, docker logs, RabbitMQ-via-exec, dune Postgres schema)
- adainrivers/  Rust/Tauri desktop — SSH+k8s BattleGroup control, maintenance
                daemon, in-game admin console (Rust idiom reference)
- the4rchangel/ Node web UI replacing battlegroup.bat — matches the Commander's
                Hyper-V self-host path + game-config schema

See docs/reference-repos/README.md for the full index + how we use each.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-11 21:08:05 -04:00

217 lines
20 KiB
Go

package main
type keystoneInfo struct {
Track, Name string
Level, Cost int
}
// keystoneMap maps keystone_id (1-based global index across Combat/Crafting/Exploration/Gathering/Sabotage tracks)
// to its track, display name, required level, and melange cost. Generated from game PAK data.
var keystoneMap = map[int16]keystoneInfo{
1: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint_Major", Level: 1, Cost: 2},
2: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 4, Cost: 2},
3: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint_Major", Level: 8, Cost: 2},
4: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 11, Cost: 5},
5: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 14, Cost: 5},
6: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint_Major", Level: 18, Cost: 5},
7: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 21, Cost: 5},
8: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 24, Cost: 10},
9: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint_Major", Level: 28, Cost: 10},
10: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 31, Cost: 10},
11: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 34, Cost: 10},
12: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint_Major", Level: 38, Cost: 15},
13: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 41, Cost: 15},
14: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 44, Cost: 15},
15: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint_Major", Level: 48, Cost: 15},
16: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 51, Cost: 20},
17: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 54, Cost: 20},
18: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint_Major", Level: 58, Cost: 20},
19: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 61, Cost: 20},
20: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 64, Cost: 25},
21: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint_Major", Level: 68, Cost: 25},
22: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 71, Cost: 25},
23: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 74, Cost: 25},
24: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint_Major", Level: 79, Cost: 30},
25: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 82, Cost: 30},
26: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 85, Cost: 30},
27: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint_Major", Level: 89, Cost: 35},
28: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 93, Cost: 35},
29: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint", Level: 97, Cost: 35},
30: {Track: "Combat", Name: "DA_CombatKeystone_SkillPoint_Super", Level: 100, Cost: 40},
31: {Track: "Combat", Name: "DA_CombatKeystone_MaxHealth_Major", Level: 6, Cost: 2},
32: {Track: "Combat", Name: "DA_CombatKeystone_MaxHealth", Level: 26, Cost: 10},
33: {Track: "Combat", Name: "DA_CombatKeystone_MaxHealth", Level: 56, Cost: 20},
34: {Track: "Combat", Name: "DA_CombatKeystone_MaxHealth_Super", Level: 77, Cost: 30},
35: {Track: "Combat", Name: "DA_CombatKeystone_MaxHealth", Level: 91, Cost: 35},
36: {Track: "Combat", Name: "DA_CombatKeystone_MaxStamina", Level: 2, Cost: 2},
37: {Track: "Combat", Name: "DA_CombatKeystone_MaxStamina_Major", Level: 16, Cost: 5},
38: {Track: "Combat", Name: "DA_CombatKeystone_MaxStamina", Level: 36, Cost: 15},
39: {Track: "Combat", Name: "DA_CombatKeystone_MaxStamina", Level: 66, Cost: 25},
40: {Track: "Combat", Name: "DA_CombatKeystone_MaxStamina_Major", Level: 95, Cost: 35},
41: {Track: "Combat", Name: "DA_CombatKeystone_Hat", Level: 75, Cost: 30},
42: {Track: "Crafting", Name: "DA_CraftingKeystone_ArmorAugment_Major", Level: 10, Cost: 2},
43: {Track: "Crafting", Name: "DA_CraftingKeystone_ArmorAugment_Major", Level: 42, Cost: 15},
44: {Track: "Crafting", Name: "DA_CraftingKeystone_MeleeAugment_Major", Level: 3, Cost: 2},
45: {Track: "Crafting", Name: "DA_CraftingKeystone_MeleeAugment_Major", Level: 30, Cost: 10},
46: {Track: "Crafting", Name: "DA_CraftingKeystone_MeleeAugment_Major", Level: 88, Cost: 35},
47: {Track: "Crafting", Name: "DA_CraftingKeystone_RangedAugment_Major", Level: 1, Cost: 0},
48: {Track: "Crafting", Name: "DA_CraftingKeystone_RangedAugment_Major", Level: 31, Cost: 10},
49: {Track: "Crafting", Name: "DA_CraftingKeystone_RangedAugment_Major", Level: 87, Cost: 35},
50: {Track: "Crafting", Name: "DA_CraftingKeystone_ConsumableBatchCrafting", Level: 8, Cost: 2},
51: {Track: "Crafting", Name: "DA_CraftingKeystone_CraftingJackpot_Major", Level: 20, Cost: 5},
52: {Track: "Crafting", Name: "DA_CraftingKeystone_CraftingJackpot", Level: 33, Cost: 15},
53: {Track: "Crafting", Name: "DA_CraftingKeystone_CraftingJackpot", Level: 55, Cost: 20},
54: {Track: "Crafting", Name: "DA_CraftingKeystone_CraftingJackpot_Major", Level: 78, Cost: 30},
55: {Track: "Crafting", Name: "DA_CraftingKeystone_CraftingJackpot_Major", Level: 96, Cost: 35},
56: {Track: "Crafting", Name: "DA_CraftingKeystone_CraftingSpeedIncrease", Level: 18, Cost: 5},
57: {Track: "Crafting", Name: "DA_CraftingKeystone_CraftingSpeedIncrease", Level: 93, Cost: 35},
58: {Track: "Crafting", Name: "DA_CraftingKeystone_GhostData_Major", Level: 100, Cost: 40},
59: {Track: "Crafting", Name: "DA_CraftingKeystone_AugmentCraftingCostDecrease", Level: 25, Cost: 10},
60: {Track: "Crafting", Name: "DA_CraftingKeystone_CraftingSpeedIncrease", Level: 38, Cost: 15},
61: {Track: "Crafting", Name: "DA_CraftingKeystone_AugmentCraftingCostDecrease", Level: 59, Cost: 20},
62: {Track: "Crafting", Name: "DA_CraftingKeystone_CraftingSpeedIncrease", Level: 72, Cost: 25},
63: {Track: "Crafting", Name: "DA_CraftingKeystone_AugmentCraftingCostDecrease", Level: 90, Cost: 35},
64: {Track: "Crafting", Name: "DA_CraftingKeystone_RecyclingJackpot", Level: 16, Cost: 5},
65: {Track: "Crafting", Name: "DA_CraftingKeystone_RecyclingJackpot", Level: 35, Cost: 15},
66: {Track: "Crafting", Name: "DA_CraftingKeystone_RecyclingJackpot", Level: 69, Cost: 25},
67: {Track: "Crafting", Name: "DA_CraftingKeystone_RecyclingYield", Level: 14, Cost: 5},
68: {Track: "Crafting", Name: "DA_CraftingKeystone_RecyclingYield", Level: 40, Cost: 15},
69: {Track: "Crafting", Name: "DA_CraftingKeystone_RecyclingYield", Level: 80, Cost: 30},
70: {Track: "Crafting", Name: "DA_CraftingKeystone_RefiningYield_1", Level: 12, Cost: 5},
71: {Track: "Crafting", Name: "DA_CraftingKeystone_RefiningYield_2", Level: 22, Cost: 10},
72: {Track: "Crafting", Name: "DA_CraftingKeystone_RefiningYield_3", Level: 45, Cost: 20},
73: {Track: "Crafting", Name: "DA_CraftingKeystone_RefiningYield_4", Level: 63, Cost: 25},
74: {Track: "Crafting", Name: "DA_CraftingKeystone_RefiningYield_5", Level: 85, Cost: 30},
75: {Track: "Crafting", Name: "DA_CraftingKeystone_MaxDurabilityLossReduction", Level: 5, Cost: 2},
76: {Track: "Crafting", Name: "DA_CraftingKeystone_MaxDurabilityLossReduction", Level: 28, Cost: 10},
77: {Track: "Crafting", Name: "DA_CraftingKeystone_MaxDurabilityLossReduction", Level: 48, Cost: 20},
78: {Track: "Crafting", Name: "DA_CraftingKeystone_MaxDurabilityLossReduction_Major", Level: 66, Cost: 25},
79: {Track: "Crafting", Name: "DA_CraftingKeystone_MaxDurabilityLossReduction", Level: 83, Cost: 30},
80: {Track: "Crafting", Name: "DA_CraftingKeystone_SchematicsOnRecycling_Major", Level: 61, Cost: 25},
81: {Track: "Crafting", Name: "DA_CraftingKeystone_Hat", Level: 75, Cost: 30},
82: {Track: "Crafting", Name: "DA_CraftingKeystone_FragmentUpgrade_Major", Level: 52, Cost: 20},
83: {Track: "Exploration", Name: "DA_ExplorationKeystone_CrashedShipBonusLoot", Level: 10, Cost: 2},
84: {Track: "Exploration", Name: "DA_ExplorationKeystone_ClimbingStamina", Level: 42, Cost: 15},
85: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleHeatDissipation", Level: 23, Cost: 10},
86: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleHeatDissipation", Level: 62, Cost: 25},
87: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleHeatDissipation", Level: 95, Cost: 35},
88: {Track: "Exploration", Name: "DA_ExplorationKeystone_FogOfWarRadius", Level: 38, Cost: 15},
89: {Track: "Exploration", Name: "DA_ExplorationKeystone_WormThreatReduction", Level: 74, Cost: 25},
90: {Track: "Exploration", Name: "DA_ExplorationKeystone_WormThreatReduction", Level: 98, Cost: 35},
91: {Track: "Exploration", Name: "DA_ExplorationKeystone_LootPoolAlterations_Major", Level: 40, Cost: 15},
92: {Track: "Exploration", Name: "DA_ExplorationKeystone_PlayerInventorySlots_Major", Level: 1, Cost: 2},
93: {Track: "Exploration", Name: "DA_ExplorationKeystone_PlayerInventorySlots_Major", Level: 25, Cost: 10},
94: {Track: "Exploration", Name: "DA_ExplorationKeystone_PlayerInventorySlots_Major", Level: 50, Cost: 20},
95: {Track: "Exploration", Name: "DA_ExplorationKeystone_PlayerInventorySlots_Major", Level: 77, Cost: 30},
96: {Track: "Exploration", Name: "DA_ExplorationKeystone_PlayerInventorySlots_Major", Level: 100, Cost: 40},
97: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleRecoeryCostReduction", Level: 18, Cost: 5},
98: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleRecoeryCostReduction", Level: 52, Cost: 20},
99: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleSandstormDamageReduction", Level: 8, Cost: 2},
100: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleSandstormDamageReduction", Level: 45, Cost: 15},
101: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleSandstormDamageReduction", Level: 80, Cost: 30},
102: {Track: "Exploration", Name: "DA_ExplorationKeystone_ScanningRange", Level: 17, Cost: 5},
103: {Track: "Exploration", Name: "DA_ExplorationKeystone_ScanningRange_Major", Level: 71, Cost: 25},
104: {Track: "Exploration", Name: "DA_ExplorationKeystone_SurveyTimeDecrease_Major", Level: 13, Cost: 5},
105: {Track: "Exploration", Name: "DA_ExplorationKeystone_SuspensorDrain", Level: 28, Cost: 10},
106: {Track: "Exploration", Name: "DA_ExplorationKeystone_SuspensorDrain_Major", Level: 93, Cost: 35},
107: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleBoostHeatCostReduction", Level: 3, Cost: 2},
108: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleBoostHeatCostReduction", Level: 15, Cost: 5},
109: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleBoostHeatCostReduction", Level: 30, Cost: 10},
110: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleBoostHeatCostReduction", Level: 59, Cost: 20},
111: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleBoostHeatCostReduction", Level: 90, Cost: 35},
112: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleDamageResistance", Level: 33, Cost: 10},
113: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleDamageResistance", Level: 88, Cost: 35},
114: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleFuelEfficiency_Major", Level: 6, Cost: 2},
115: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleFuelEfficiency_Major", Level: 35, Cost: 15},
116: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleFuelEfficiency_Major", Level: 55, Cost: 20},
117: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleFuelEfficiency_Major", Level: 65, Cost: 25},
118: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleFuelEfficiency_Major", Level: 85, Cost: 30},
119: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleHeatDissipation", Level: 48, Cost: 20},
120: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleHeatDissipation", Level: 68, Cost: 25},
121: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleHeatDissipation", Level: 83, Cost: 30},
122: {Track: "Exploration", Name: "DA_ExplorationKeystone_VehicleSpeedBonus_Major", Level: 20, Cost: 5},
123: {Track: "Exploration", Name: "DA_ExplorationKeystone_Hat", Level: 75, Cost: 30},
124: {Track: "Gathering", Name: "DA_GatheringKeystone_BonusBlood", Level: 3, Cost: 2},
125: {Track: "Gathering", Name: "DA_GatheringKeystone_BonusWater", Level: 2, Cost: 2},
126: {Track: "Gathering", Name: "DA_GatheringKeystone_PickupYield", Level: 15, Cost: 5},
127: {Track: "Gathering", Name: "DA_GatheringKeystone_PickupYield", Level: 55, Cost: 20},
128: {Track: "Gathering", Name: "DA_GatheringKeystone_ScrapObjectsYield_Major", Level: 1, Cost: 2},
129: {Track: "Gathering", Name: "DA_GatheringKeystone_ScrapObjectsYield", Level: 35, Cost: 15},
130: {Track: "Gathering", Name: "DA_GatheringKeystone_ByProductSalvage", Level: 7, Cost: 2},
131: {Track: "Gathering", Name: "DA_GatheringKeystone_ByProductSalvage", Level: 17, Cost: 5},
132: {Track: "Gathering", Name: "DA_GatheringKeystone_ByProductSalvage", Level: 23, Cost: 10},
133: {Track: "Gathering", Name: "DA_GatheringKeystone_ByProductSalvage", Level: 28, Cost: 10},
134: {Track: "Gathering", Name: "DA_GatheringKeystone_ByProductSalvage", Level: 38, Cost: 15},
135: {Track: "Gathering", Name: "DA_GatheringKeystone_ByProductSalvage", Level: 43, Cost: 15},
136: {Track: "Gathering", Name: "DA_GatheringKeystone_ByProductSalvage", Level: 48, Cost: 20},
137: {Track: "Gathering", Name: "DA_GatheringKeystone_ByProductSalvage", Level: 53, Cost: 20},
138: {Track: "Gathering", Name: "DA_GatheringKeystone_ByProductSalvage", Level: 68, Cost: 25},
139: {Track: "Gathering", Name: "DA_GatheringKeystone_ByProductSalvage", Level: 83, Cost: 35},
140: {Track: "Gathering", Name: "DA_GatheringKeystone_CompactorRange", Level: 13, Cost: 5},
141: {Track: "Gathering", Name: "DA_GatheringKeystone_CompactorRange", Level: 33, Cost: 15},
142: {Track: "Gathering", Name: "DA_GatheringKeystone_CompactorRange", Level: 63, Cost: 25},
143: {Track: "Gathering", Name: "DA_GatheringKeystone_CompactorRange", Level: 78, Cost: 30},
144: {Track: "Gathering", Name: "DA_GatheringKeystone_CompactorRange_Major", Level: 74, Cost: 30},
145: {Track: "Gathering", Name: "DA_GatheringKeystone_CompactorThreat", Level: 8, Cost: 5},
146: {Track: "Gathering", Name: "DA_GatheringKeystone_CompactorThreat", Level: 25, Cost: 10},
147: {Track: "Gathering", Name: "DA_GatheringKeystone_CompactorThreat", Level: 65, Cost: 25},
148: {Track: "Gathering", Name: "DA_GatheringKeystone_CompactorThreat", Level: 86, Cost: 35},
149: {Track: "Gathering", Name: "DA_GatheringKeystone_CompactorThreat", Level: 96, Cost: 35},
150: {Track: "Gathering", Name: "DA_GatheringKeystone_NewCorpseType_Major", Level: 58, Cost: 25},
151: {Track: "Gathering", Name: "DA_GatheringKeystone_ToolPowerCostReduction_Major", Level: 5, Cost: 2},
152: {Track: "Gathering", Name: "DA_GatheringKeystone_ToolPowerCostReduction", Level: 45, Cost: 20},
153: {Track: "Gathering", Name: "DA_GatheringKeystone_ToolPowerCostReduction_Major", Level: 93, Cost: 35},
154: {Track: "Gathering", Name: "DA_GatheringKeystone_YieldJackpot_Major", Level: 10, Cost: 5},
155: {Track: "Gathering", Name: "DA_GatheringKeystone_YieldJackpot_Major", Level: 20, Cost: 10},
156: {Track: "Gathering", Name: "DA_GatheringKeystone_YieldJackpot_Major", Level: 30, Cost: 10},
157: {Track: "Gathering", Name: "DA_GatheringKeystone_YieldJackpot_Major", Level: 40, Cost: 15},
158: {Track: "Gathering", Name: "DA_GatheringKeystone_YieldJackpot_Major", Level: 50, Cost: 20},
159: {Track: "Gathering", Name: "DA_GatheringKeystone_YieldJackpot_Major", Level: 61, Cost: 25},
160: {Track: "Gathering", Name: "DA_GatheringKeystone_YieldJackpot_Major", Level: 71, Cost: 30},
161: {Track: "Gathering", Name: "DA_GatheringKeystone_YieldJackpot_Major", Level: 81, Cost: 30},
162: {Track: "Gathering", Name: "DA_GatheringKeystone_YieldJackpot_Major", Level: 90, Cost: 35},
163: {Track: "Gathering", Name: "DA_GatheringKeystone_YieldJackpot_Major", Level: 100, Cost: 40},
164: {Track: "Gathering", Name: "DA_GatheringKeystone_Hat", Level: 75, Cost: 30},
165: {Track: "Sabotage", Name: "DA_SabotageKeystone_LandsraadBribeCost", Level: 29, Cost: 10},
166: {Track: "Sabotage", Name: "DA_SabotageKeystone_LandsraadBribeCost", Level: 58, Cost: 20},
167: {Track: "Sabotage", Name: "DA_SabotageKeystone_LandsraadBribeCost", Level: 78, Cost: 30},
168: {Track: "Sabotage", Name: "DA_SabotageKeystone_LandsraadBribeCost", Level: 95, Cost: 35},
169: {Track: "Sabotage", Name: "DA_SabotageKeystone_LandsraadContribution", Level: 19, Cost: 5},
170: {Track: "Sabotage", Name: "DA_SabotageKeystone_LandsraadContribution_Major", Level: 43, Cost: 15},
171: {Track: "Sabotage", Name: "DA_SabotageKeystone_LandsraadContribution", Level: 53, Cost: 20},
172: {Track: "Sabotage", Name: "DA_SabotageKeystone_LandsraadContribution", Level: 72, Cost: 25},
173: {Track: "Sabotage", Name: "DA_SabotageKeystone_LandsraadContribution", Level: 88, Cost: 35},
174: {Track: "Sabotage", Name: "DA_SabotageKeystone_LandsraadBribeCost_Major", Level: 17, Cost: 5},
175: {Track: "Sabotage", Name: "DA_SabotageKeystone_ExtraLootOnCorpses2_Major", Level: 40, Cost: 15},
176: {Track: "Sabotage", Name: "DA_SabotageKeystone_HouseCreditsBonus_Major", Level: 60, Cost: 25},
177: {Track: "Sabotage", Name: "DA_SabotageKeystone_HeadshotDamage_Major", Level: 1, Cost: 2},
178: {Track: "Sabotage", Name: "DA_SabotageKeystone_HeadshotDamage_Major", Level: 27, Cost: 10},
179: {Track: "Sabotage", Name: "DA_SabotageKeystone_HeadshotDamage_Major", Level: 50, Cost: 20},
180: {Track: "Sabotage", Name: "DA_SabotageKeystone_HeadshotDamage_Major", Level: 74, Cost: 30},
181: {Track: "Sabotage", Name: "DA_SabotageKeystone_HeadshotDamage_Major", Level: 100, Cost: 40},
182: {Track: "Sabotage", Name: "DA_SabotageKeystone_ExplosiveBarrels", Level: 8, Cost: 2},
183: {Track: "Sabotage", Name: "DA_SabotageKeystone_HouseCreditsBonus_Major", Level: 3, Cost: 2},
184: {Track: "Sabotage", Name: "DA_SabotageKeystone_HouseCreditsBonus", Level: 22, Cost: 10},
185: {Track: "Sabotage", Name: "DA_SabotageKeystone_HouseCreditsBonus", Level: 45, Cost: 15},
186: {Track: "Sabotage", Name: "DA_SabotageKeystone_HouseCreditsBonus_Major", Level: 85, Cost: 30},
187: {Track: "Sabotage", Name: "DA_SabotageKeystone_ScanningRangeResistance", Level: 12, Cost: 5},
188: {Track: "Sabotage", Name: "DA_SabotageKeystone_ScanningRangeResistance", Level: 32, Cost: 10},
189: {Track: "Sabotage", Name: "DA_SabotageKeystone_ScanningRangeResistance", Level: 55, Cost: 20},
190: {Track: "Sabotage", Name: "DA_SabotageKeystone_ScanningRangeResistance", Level: 69, Cost: 25},
191: {Track: "Sabotage", Name: "DA_SabotageKeystone_ScanningRangeResistance", Level: 98, Cost: 35},
192: {Track: "Sabotage", Name: "DA_SabotageKeystone_RecognitionReduction", Level: 15, Cost: 5},
193: {Track: "Sabotage", Name: "DA_SabotageKeystone_RecognitionReduction_Major", Level: 65, Cost: 25},
194: {Track: "Sabotage", Name: "DA_SabotageKeystone_AggroRangeReduction", Level: 5, Cost: 2},
195: {Track: "Sabotage", Name: "DA_SabotageKeystone_AggroRangeReduction", Level: 93, Cost: 35},
196: {Track: "Sabotage", Name: "DA_SabotageKeystone_ReducedScannedTime", Level: 24, Cost: 10},
197: {Track: "Sabotage", Name: "DA_SabotageKeystone_ReducedScannedTime", Level: 35, Cost: 15},
198: {Track: "Sabotage", Name: "DA_SabotageKeystone_ReducedScannedTime", Level: 48, Cost: 20},
199: {Track: "Sabotage", Name: "DA_SabotageKeystone_ReducedScannedTime", Level: 63, Cost: 25},
200: {Track: "Sabotage", Name: "DA_SabotageKeystone_ReducedScannedTime", Level: 81, Cost: 30},
201: {Track: "Sabotage", Name: "DA_SabotageKeystone_HeadshotDamage_Major", Level: 10, Cost: 5},
202: {Track: "Sabotage", Name: "DA_SabotageKeystone_HouseCreditsBonus_Major", Level: 37, Cost: 15},
203: {Track: "Sabotage", Name: "DA_SabotageKeystone_LandsraadBribeCost_Major", Level: 90, Cost: 35},
204: {Track: "Sabotage", Name: "DA_SabotageKeystone_IncreasedTrapTimer", Level: 2, Cost: 2},
205: {Track: "Sabotage", Name: "DA_SabotageKeystone_Hat", Level: 75, Cost: 30},
}