Initial pass at Golden Pack.
This commit is contained in:
@@ -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},
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user