tennis scoring -> str8 b05
This commit is contained in:
@@ -9,6 +9,14 @@ function Scoreboard(args) {
|
||||
leave,
|
||||
} = args;
|
||||
|
||||
const scoreText = () => {
|
||||
if (player.score === 'Zero') return '▫▫▫';
|
||||
if (player.score === 'One') return '■▫▫';
|
||||
if (player.score === 'Two') return '■■▫';
|
||||
if (player.score === 'Win') return '■■■';
|
||||
return '';
|
||||
};
|
||||
/*
|
||||
let scoreText = () => {
|
||||
if (player.score === 'Zero') return '▫▫▫▫';
|
||||
if (player.score === 'One') return '■▫▫▫';
|
||||
@@ -18,6 +26,7 @@ function Scoreboard(args) {
|
||||
if (player.score === 'Win') return '■■■■';
|
||||
return '';
|
||||
};
|
||||
*/
|
||||
|
||||
if (!isPlayer) {
|
||||
return (
|
||||
|
||||
@@ -56,8 +56,8 @@ function Welcome() {
|
||||
<p> Turn-based 1v1 strategy game in an abstract setting. </p>
|
||||
<p>
|
||||
Build a unique team of 3 constructs from a range of skills and specialisations.<br />
|
||||
Outplay your opponent in multiple rounds by adapting to an always shifting meta. <br />
|
||||
Simple rules, complex interactions and unique mechanics.<br />
|
||||
Outplay your opponent in multiple rounds by adapting to an always shifting meta. <br />
|
||||
Simple rules, complex interactions and unique mechanics.<br />
|
||||
</p>
|
||||
<p>
|
||||
Free to play, no pay to win. Register to start playing.<br />
|
||||
|
||||
Reference in New Issue
Block a user