Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
krkane
/
Rüütli Vaev
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
1
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
47aa791c
authored
Mar 20, 2024
by
gerann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Header.h
parent
085298db
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
4 deletions
Library/Header.h
Library/Header.h
View file @
47aa791c
...
...
@@ -7,9 +7,33 @@
#include <string.h>
#define NUM_HENCHMEN 5
#define LOSE_HP -10
#define LOSE_HP 10
#define POTION 25
#define INPUT_MIN 0
#define INPUT_MAX 3
//Players base values
#define PLAYER_BASE_HEALTH 100
#define PLAYER_BASE_DAMAGE 10
#define POT_COUNT 10
//Players level up macros
#define LEVEL_UP_HP 20
#define LEVEL_UP_ATTACK 5
//Different enemies base values
#define ELF_BASE_DAMAGE 10
#define ORK_BASE_DAMAGE 15
#define SMURF_BASE_DAMAGE 20
#define DEEMON_BASE_DAMAGE 25
#define BANDIIT_BASE_DAMAGE 30
#define SPECIAL_DAMAGE 40
#define BOSS_HEALTH 100
#define BOSS_DAMAGE 20
//Game save value
#define SAVE_GAME 2
#define STATS_ROW_LEN 2
typedef
struct
{
int
health
;
...
...
@@ -31,16 +55,20 @@ typedef struct
char
type
[
20
];
}
FinalBoss
;
void
PrintWelcomeMessage
(
void
);
void
DisplayGameRules
(
void
);
Player
CreatePlayer
();
int
Move
(
int
defeated_enemies
);
void
handleTrap
(
Player
*
player
);
int
fight
(
Player
*
p
,
Enemy
*
e
);
int
bossFight
(
Player
*
p
,
Enemy
*
boss
);
void
usePotion
(
Player
*
p
,
int
initialHealth
,
int
currentHealth
);
int
bossFight
(
Player
*
p
,
FinalBoss
*
boss
);
int
usePotion
(
Player
*
p
,
int
initialHealth
,
int
currentHealth
);
void
levelUp
(
Player
*
p
);
Enemy
CreateEnemy
(
int
defeated_enemies
);
FinalBoss
CreateFinalBoss
(
int
defeated_enemies
);
int
Menu
(
void
);
int
GetIntInRange
(
int
min
,
int
max
);
int
SaveGame
(
char
*
file
,
Player
*
p
,
int
enemiesDefeated
);
void
LoadGame
(
char
*
file
,
Player
*
p
,
int
*
enemies
);
#endif //GAME_HEADER_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment