You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
352 B

  1. //Legt mögliche Farben fest, "NONE" sind Auswahlkarten
  2. import Game from "./Game.js";
  3. export const CARD_COLORS = ["NONE", "BLUE", "GREEN", "RED", "YELLOW"];
  4. console.log("ewew")
  5. let rules = {
  6. startCards: 5,
  7. firstPlaySpecial: true,
  8. }
  9. let game = new Game(2, rules);
  10. game.start();
  11. console.log(game.currentPlayer + game.cardOnDeck.name +"");