diff options
author | Anthony Wang | 2021-05-09 15:42:28 -0500 |
---|---|---|
committer | Anthony Wang | 2021-05-09 15:42:28 -0500 |
commit | 6306da1abd7a614b2cca9a541f1e59c4f0e678e3 (patch) | |
tree | d44a3732ca7437744b20264fb74e67ae9e19220f | |
parent | 203f24bd9c2dfae66bd6fded41f25ca59ee7223a (diff) | |
parent | 40115b714df43d51073ba20c7292aed3f75dcb14 (diff) |
Merge branch 'main' of https://github.com/Ta180m/BSXv1.0.1
-rw-r--r-- | README.md | 12 | ||||
-rw-r--r-- | back/src/Game.ts | 2 | ||||
-rw-r--r-- | front/pages/index.tsx | 9 |
3 files changed, 13 insertions, 10 deletions
@@ -1,9 +1,11 @@ # BSX -The card game BS, but better! Currently under development. +The card game BS, but better! -## Production deployment - -Edit the environmental variables in `./env` and use the script `./run`. +## Getting started +`git clone` this repository, then run `npm install` in `front` and `back`. You may have to run it multiple times for it to pull in all dependencies. ## Developing -You can use `NEXT_PUBLIC_BACK_HOST=localhost:4000 npm run dev` to run the frontend and `PORT=4000 node dist/index.js` to run the backend after building it with `npm run build`. +You can use `NEXT_PUBLIC_BACK_HOST=localhost:4000 npm run dev` to run the frontend and `PORT=4000 node dist/index.js` to run the backend after building it with `npm run build`. You could also just run `NEXT_PUBLIC_BACK_HOST='https://server.exozy.me' npm run dev` if you are only developing the frontend and connect to the public backend server. + +## Production deployment +Edit the environmental variables in `./env` and use the script `./run`. diff --git a/back/src/Game.ts b/back/src/Game.ts index d054fd7..9434226 100644 --- a/back/src/Game.ts +++ b/back/src/Game.ts @@ -110,11 +110,11 @@ export default class Game { } while (this.lastPlayed > 0) { // Phase 2 await this.flip(); - this.lastPlayed--; if (this.phase === 3 as number) { // Oops, flipped over a red card! await this.giveup(); // The player who called BS won and now the challenged player must give up a card! return; } + this.lastPlayed--; } this.phase = 3; await this.giveup(); // The player who called BS won and now they must give up a card! diff --git a/front/pages/index.tsx b/front/pages/index.tsx index 4c38f74..5605b71 100644 --- a/front/pages/index.tsx +++ b/front/pages/index.tsx @@ -18,9 +18,7 @@ interface GameState { const rankStrs = ['', 'A', '2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K']; const suitChars = ['♣', '♦', '♥', '♠']; -const rules = `Welcome to BSX! - -There are only 5 simple rules! +const rules = `There are only 5 simple rules! 1. You will first be dealt 5 cards. @@ -88,6 +86,9 @@ export default function Game() { if (!loggedIn) { return ( <> + <h2> + Welcome to BSX! + </h2> <div> {rules} </div> @@ -158,7 +159,7 @@ export default function Game() { </div> {`Rearrange your card stack from top to bottom!`} <div> - <p>Your cards:</p> + <p>Your cards stack:</p> {gameState.cards.map((card, i) => ( <label key={card.rank+' '+card.suit}> <div> |