mirror of
https://github.com/Steffo99/iiiiil-gioco.git
synced 2024-11-22 07:54:21 +00:00
Aggiunta la funzione per il calcolo della difesa.
This commit is contained in:
parent
eb032b9310
commit
0d909290be
1 changed files with 7 additions and 0 deletions
7
main.cpp
7
main.cpp
|
@ -114,6 +114,11 @@ class Player : public Entity
|
||||||
int result = equipment_atk + base_atk;
|
int result = equipment_atk + base_atk;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
int def()
|
||||||
|
{
|
||||||
|
int result = equipment_def + base_def;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
int pozioni_vita_piccole = 3;
|
int pozioni_vita_piccole = 3;
|
||||||
int pozioni_vita_medie = 2;
|
int pozioni_vita_medie = 2;
|
||||||
int pozioni_vita_grandi = 1;
|
int pozioni_vita_grandi = 1;
|
||||||
|
@ -714,10 +719,12 @@ Enemy* find(int x, int y)
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void attack(int x, int y)
|
void attack(int x, int y)
|
||||||
{
|
{
|
||||||
find(x,y)->damage(50);
|
find(x,y)->damage(50);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
int seed; //Seed casuale per generare il livello
|
int seed; //Seed casuale per generare il livello
|
||||||
|
|
Loading…
Reference in a new issue