Redid the entire textbox code to be really nice now.

This commit is contained in:
2022-04-21 09:39:20 -07:00
parent 45228018f2
commit 6cd31448ce
10 changed files with 121 additions and 76 deletions

View File

@@ -1,27 +0,0 @@
const GAME_STRINGS = {
'ERROR': 'An error\nhas occured',
'HELLO': 'Hello World!\nHow are you today?\nThank god!',
'POKER_GAME_START': 'Poker game started',
'POKER_GAME_TAKING_BLINDS': 'Blinds taken.',
'POKER_GAME_CARDS_DEALT': 'Cards dealt.',
'POKER_GAME_CARDS_FLOPPED': 'Cards flopped',
'POKER_GAME_CARDS_TURNED': 'Cards turned',
'POKER_GAME_CARDS_RIVERED': 'Cards river',
'DEBUG_WINNER_DECIDED': 'DEBUG WINNER',
'DEBUG_PLAYER': 'DEBUG PLAYER',
'POKER_GAME_AI_FOLD': 'AI Folding',
'POKER_GAME_AI_RAISE': 'AI Raise',
'POKER_GAME_AI_RAISE_BLUFF': 'AI Raise\nBut Bluffing',
'POKER_GAME_AI_CALL': 'AI Calling',
'POKER_GAME_AI_CALL_BLUFF': 'AI Calling\nBut Bluffing',
'POKER_GAME_AI_ALL_IN': 'AI All In',
'POKER_GAME_AI_ALL_IN_BLUFF': 'AI All In\nBut Bluffing',
'POKER_GAME_AI_CHECK': 'AI Checking',
'POKER_GAME_AI_CHECK_BLUFF': 'AI Checking\nBut Bluffing',
};
module.exports = { GAME_STRINGS };