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.

26 lines
400 B

2 years ago
2 years ago
  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. let rules = {
  5. startCards: 3,
  6. firstPlaySpecial: true,
  7. stackCards: true,
  8. }
  9. $(()=>{
  10. let game = new Game(4, rules);
  11. game.start();
  12. $(window).on('resize', function () {
  13. game.style.refreshHtml();
  14. })
  15. });