Newer
Older
wwwcats / public_html / strings.js
  1. var strings = {
  2. "card_attack": "Attack",
  3. "card_defuse": "Defuse",
  4. "card_exploding": "Detonating Cat!",
  5. "card_favour": "Favour",
  6. "card_nope": "Nope!",
  7. "card_random1": "BEANS Cat",
  8. "card_random2": "CHUFFing Cat",
  9. "card_random3": "Fridge Cat",
  10. "card_random4": "Tacky Yack Cat",
  11. "card_random5": "Bin Guitar Cat",
  12. "card_see3": "See the Future (x3)",
  13. "card_shuffle": "Shuffle",
  14. "card_skip": "Skip",
  15. "username_exists": "That username has already been taken. Please try and be more original.",
  16. "already_connecting": "There is already an active connection. Please reload the page if this problem persists.",
  17. "one_word": "Your name should be one word.",
  18. "lobby_one_word": "Lobby names can only be one word.",
  19. "illegal_move": "Sorry, but the server has disconnected you for moving improperly. This is either a bug or you are trying to cheat.",
  20. "message_spectating": "You are currently spectating; to join, type <a href=\"#cmd:join\"><b>/join</b></a>.",
  21. "message_spectating_started": "You are spectating and can join once this round has finished.",
  22. "message_spectating_exploded": "You are out for this round.",
  23. "message_playing": "Type <a href=\"#cmd:start\"><b>/start</b></a> to start the game, or <a href=\"#cmd:leave\"><b>/leave</b></a> to spectate.",
  24. "bcast_starting": "<span style='color:yellow'>The game is starting!</span>",
  25. "bcast_new_game": "<span style='color:yellow'>A new game has started.</span>",
  26. "bcast_no_nope": "Nope! There is nothing to Nope!",
  27. "bcast_favour_cancel": "The favour was cancelled.",
  28. "bcast_min_players": "There must be at least 2 players in a game.",
  29. "bcast_max_players": "There cannot be more than 6 players in a game.",
  30. "bcast_high_players": "<span style='color:orange'>You are playing with 6 players - the game will still work, but be aware that this is more than intended!</span>",
  31. "must_defuse": "<span style='color:purple'>You must defuse the Detonating Cat.</span>",
  32. "question_defuse_pos": "Where should the Detonating Cat be placed in the deck? (0 = on top)",
  33. "question_favour_who": "Who do you want to ask for a favour?",
  34. "question_random_who": "Who would you like to ask for a random card?",
  35. "question_steal_who": "Who would you like to steal a card from?",
  36. "question_steal_what": "Which card would you like to steal?",
  37. "conn_closed": "The connection to the server was lost.",
  38. "bad_version": "The game server is running a different version of the game. If this problem persists, please try hard-reloading the page by pressing Ctrl+F5 or clearing your browser cache.",
  39. "title_normal": "Detonating Cats",
  40. "title_alert": "*YOUR TURN!*",
  41. "your_turn": ">>YOUR TURN<<"
  42. };
  43.  
  44. var cards = [
  45. "attack",
  46. "defuse",
  47. "exploding",
  48. "favour",
  49. "nope",
  50. "random1",
  51. "random2",
  52. "random3",
  53. "random4",
  54. "random5",
  55. "see3",
  56. "shuffle",
  57. "skip"
  58. ];