User prompt
Evolution Links: Planet Builder
Initial prompt
Game is a single player, turn based card game to be created as an app to play on mobile and desktop devices. The visuals are in simple 2D and the main screen is the 'board' which is a grid of the cards dealt in setup and added to during play. Also in the UI is the player hand and a scoring/info visual helper. The game is played in turns which are split over 5 'rounds'. A round is completed when the 'main deck' runs out and is reshuffled. A turn is split into 'phases' which will be described in detail later but essentially, a turn is: draw 3 cards from the main deck, play 1 card onto a card already in play, apply any 'on-play' effect, adjust the 'links' (to be explained later), check states and finish turn. basically the game represents the evolution of a planet and the interactions between carnivores and their herbivore prey (hence the 'links'). There are also 'events' that are added to the deck if a creature dies. There is a setup step before the game begins which lays out a number of cards in position to represent the fresh planet. Perhaps 2 player integration later on in a 'hot seat' kind of way. Is that enough info for a basic reference? We can discuss card types, setup, in depth turn structure etc etc, what shall we discuss or is there info that you feel is necessary now?
/****
* Initialize Game
****/
var game = new LK.Game({
backgroundColor: 0x000000
}); /****
* Initialize Game
****/
var game = new LK.Game({
backgroundColor: 0x000000
});