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:
parent
09649e7339
commit
7fbfc0629a
1 changed files with 4 additions and 4 deletions
|
|
@ -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 = {}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue