mirror of
https://github.com/Steffo99/iiiiil-gioco.git
synced 2024-11-24 08:54:19 +00:00
Aggiunta la difesa e spostato l'attacco in private
This commit is contained in:
parent
845ad4dd0d
commit
e76b72abba
1 changed files with 5 additions and 2 deletions
7
main.cpp
7
main.cpp
|
@ -10,6 +10,7 @@
|
|||
#define ENEMIES_IN_LEVEL 5
|
||||
#define HP_MAX 50
|
||||
#define STARTING_ATK 5
|
||||
#define STARTING_DEF 5
|
||||
#define MAX_POTIONS_PER_FLOOR 5
|
||||
|
||||
using namespace std;
|
||||
|
@ -81,9 +82,11 @@ class Entity
|
|||
class Player : public Entity
|
||||
{
|
||||
private:
|
||||
int equipment_atk = 0; //Attacco ottenuto dall'equipaggiamento
|
||||
public:
|
||||
int base_atk = STARTING_ATK; //Attacco di base
|
||||
int base_def = STARTING_DEF; //Difesa di base
|
||||
int equipment_atk = 0; //Attacco ottenuto dall'equipaggiamento
|
||||
int equipment_def = 0; //Difesa ottenuta dall'equipaggiamento
|
||||
public:
|
||||
int atk()
|
||||
{
|
||||
int result = equipment_atk + base_atk;
|
||||
|
|
Loading…
Reference in a new issue