diff --git a/schlangen_und_leitern/js/playerHandling.js b/schlangen_und_leitern/js/playerHandling.js index 610152b..ea605c0 100644 --- a/schlangen_und_leitern/js/playerHandling.js +++ b/schlangen_und_leitern/js/playerHandling.js @@ -1,12 +1,10 @@ -function PlayerBuilder(id, boardArr){ +function PlayerBuilder(){ - this.id = id; - this.location = boardArr; + this.position = 1; - console.log("player" + id + "built"); } @@ -21,7 +19,17 @@ function buildPlayerArray(playerCount, boardArr){ playerArray.push(player) console.log("player added to array!") } - + return playerArray; +} + +function movePlayer(player, roll){ + +player.position += roll; +if(player.position >= 99){ + player.position = 99; +} +console.log(player.position); + } \ No newline at end of file