Skip to content

Round Screens

Between rounds, various screens are displayed to provide players with information, such as the current round, and the rewards won/lost during the round.

The round screen is displayed at the start of each round, showing the current round number. Round Screen

When entering the final round, instead of showing a number, the screen displays “Final Round” to indicate that this is the last round of the game. Final Round Screen

When the player dies, a death screen is displayed. It shows how many Prosperity Eggs the player has lost by dying. During this screen, the Game Over Theme plays. Death Screen

The title text at the top of the death screen is randomized from a list of death lines, which are displayed in a large font.

@export var death_lines: Array[String] = [
"Your Feathers Line the Arena Floor",
"The Pecking Order Claims Another",
"Plucked. Beheaded. Devoured.",
"Clucked Your Last Cluck",
"Your Egg Was Doomed From the Start",
"No One Remembers the Fallen Hens",
"You Died",
"Mortuus Es Ut Scortum",
"Your Mother Must Be Proud",
"You Died Like a █████",
]

When the player wins a round, a screen is displayed showing the number of Prosperity Eggs won during the round. Round Won Screen

The victory screen is displayed when the player wins a round, showing the number of Prosperity Eggs won. During this screen, the Victory Theme plays. Victory Screen Arena Without Boss Additionally, if the player has defeated a boss in the round, the victory screen will also show the amount of Feathers of Rebirth earned. Victory Screen Arena With Boss

The title text at the top of the victory screen is randomized from a list of victory lines, which are displayed in a large font.

@export var victory_lines: Array[String] = [
"The Weak Perish, You Endure.",
"The Arena Bows",
"Bloody Triumph!",
"Coop de Grâce!",
]