feat(empire): Add throne room profile display for empire insignia and stats

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Claude Code 2026-03-31 07:59:20 -07:00
parent 09649e7339
commit 7fbfc0629a

View file

@ -12,10 +12,6 @@ const ThroneRoomHarvestScript = preload(
"res://engine/src/modules/empire/throne_room_harvest.gd"
)
## Decoration IDs earned in the most recent completed game.
## Consumed by main_menu when it shows the spoils overlay.
var pending_spoils: Array[String] = []
const DEFAULT_STATS: Dictionary = {
"best_era": 0,
"victories": 0,
@ -35,6 +31,10 @@ const DEFAULT_STATS: Dictionary = {
"legendary_unit_promoted": 0,
}
## Decoration IDs earned in the most recent completed game.
## Consumed by main_menu when it shows the spoils overlay.
var pending_spoils: Array[String] = []
var race: String = "dwarf"
var game_records: Array = []
var lifetime_stats: Dictionary = {}