Initial pass at Golden Pack.

This commit is contained in:
Greyson Parrelli
2026-07-24 07:47:05 -04:00
parent e74f983470
commit dd395f4bbf
27 changed files with 2770 additions and 150 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
package game
// Card packs are the selectable sets of pets and food a game is played with.
// Only the Turtle pack ships with real card data today; Golden and Unicorn are
// declared here as infrastructure (shown but not yet playable) so the lobby,
// views, and deck-building all have a single source of truth to grow into.
// Turtle and Golden ship with full card data; Unicorn is declared here as
// infrastructure (shown but not yet playable) so the lobby, views, and
// deck-building all have a single source of truth to grow into.
// PackInfo describes one selectable pack. Playable gates whether a lobby may
// choose it and start a game with it.
@@ -20,7 +20,7 @@ const DefaultPack = "turtle"
// Packs is the ordered catalog of packs shown in the lobby.
var Packs = []PackInfo{
{ID: "turtle", Name: "Turtle Pack", Emoji: "🐢", Playable: true},
{ID: "golden", Name: "Golden Pack", Emoji: "🥇", Playable: false},
{ID: "golden", Name: "Golden Pack", Emoji: "🥇", Playable: true},
{ID: "unicorn", Name: "Unicorn Pack", Emoji: "🦄", Playable: false},
}