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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
| function getRandomValue(min, max) {
| return Math.floor(Math.random() * (max - min)) + min;
| }
|
| const app = Vue.createApp({
| data() {
| return {
| playerHealth: 100,
| monsterHealth: 100,
| currentRound: 0,
| };
| },
| computed: {
| monsterBarStyle() {
| return { width: this.monsterHealth + "%" };
| },
| playerBarStyle() {
| return { width: this.playerHealth + "%" };
| },
| mayUseSpecialAttack() {
| return this.currentRound % 3 !== 0;
| },
| },
| watch: {},
| methods: {
| attackMonster() {
| this.currentRound++;
| const attackValue = getRandomValue(5, 12);
| this.monsterHealth -= attackValue;
| this.attackPlayer();
| },
| attackPlayer() {
| const attackValue = getRandomValue(8, 15);
| this.playerHealth -= attackValue;
| },
| specialAttackMonster() {
| this.currentRound++;
| const attackValue = getRandomValue(10, 20);
| this.monsterHealth -= attackValue;
| this.attackPlayer();
| },
| healPlayer() {
| this.currentRound++;
| const healValue = getRandomValue(8, 20);
| if (this.playerHealth + healValue > 100) {
| this.playerHealth = 100;
| } else {
| this.playerHealth += healValue;
| }
| this.attackPlayer();
| },
| },
| });
|
| app.mount("#game");
|
|