Cristiano Magro
2024-12-26 4a01d95d25a6c59e20618365ba675a4d0736080d
04 - monster slayer game/prj-monster-01-starting-setup/app.js
@@ -1,10 +1,28 @@
function getRandomValue(min, max){
    return Math.floor(Math.random() * (max - min)) + min;
}
const app = Vue.createApp({
    data() {
      return {};
    return {
      playerHealth: 100,
      monsterHealth: 100,
    };
    },
    computed: {},
    watch: {},
    methods: {},
  methods: {
    attackMonster() {
      const attackValue = getRandomValue(5,12);
      this.monsterHealth -= attackValue;
      this.attackPlayer();
    },
    attackPlayer(){
        const attackValue = getRandomValue(8,15);
        this.playerHealth -= attackValue;
    },
  },
  });
  
  app.mount("#game");