-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
33 lines (32 loc) · 833 Bytes
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
new Vue({
el: '#app',
data() {
return {
playerDice: '-',
computerDice: '-',
isPlayerTurn: true,
isGameOver: false,
resultMessage: '',
};
},
methods: {
rollPlayerDice() {
this.playerDice = this.rollDice();
this.computerDice = this.rollDice();
this.checkWinner();
this.isPlayerTurn = false;
},
},
rollDice() {
return Math.floor(Math.random() * 6) + 1;
},
checkWinner() {
if (this.playerDice > this.computerDice) {
this.resultMessage = 'Você ganhou!';
} else if (this.playerDice < this.computerDice) {
this.resultMessage = 'A máquina ganhou!';
} else {
this.resultMessage = 'Empate!';
}
}
})