Skip to content
Snippets Groups Projects
Commit 447c1383 authored by Scherbaum Maximilian's avatar Scherbaum Maximilian
Browse files

update: Player.java comments and player balancing #74 #75

parent 4f56bc72
No related branches found
No related tags found
4 merge requests!74V1,!73Initial commit,!71Merge DataBase into Development,!12merge LokalGameplay into development
......@@ -94,6 +94,7 @@ class Player implements IEntity {
playerDirection = EntityDirection.DOWN;
}
//Values result from balancing
private void initializePlayerStats() {
if (entityClass == EntityClass.HUMAN) {
maxPlayerHealth = 50;
......@@ -102,7 +103,7 @@ class Player implements IEntity {
playerSpeed = 5;
} else if (entityClass == EntityClass.HIGH_BORN) {
maxPlayerHealth = 100;
health = 70;
health = 75;
damage = 2;
playerSpeed = 3;
} else if (entityClass == EntityClass.LOW_BORN) {
......@@ -111,7 +112,7 @@ class Player implements IEntity {
damage = 10;
playerSpeed = 7;
} else {
maxPlayerHealth = 30;
maxPlayerHealth = 40;
health = 15;
damage = 7;
playerSpeed = 5;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment