Skip to content
Snippets Groups Projects
Commit 0b43e55a authored by Laczó Dávid Bence's avatar Laczó Dávid Bence
Browse files

Balance

parent 2e62528a
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ public class Obstacle extends Placeable implements IUpgradeable, IBuyableItem
@Override
public int getCost()
{
return 3;
return 5;
}
}
\ No newline at end of file
......@@ -11,7 +11,7 @@ public class Player implements IEnemyObserver
public Player()
{
magic = 9;
magic = 20;
}
public void buildTower(Field field)
......
......@@ -144,6 +144,6 @@ public class Tower extends Placeable implements ITickable, IEnemyObserver,
@Override
public int getCost() {
return 3;
return 10;
}
}
\ No newline at end of file
......@@ -27,7 +27,7 @@ public class DecSpeedRock implements IMagicrock
@Override
public int getCost()
{
return 0;
return 5;
}
}
\ No newline at end of file
......@@ -32,7 +32,7 @@ public class IncDMGRock implements IMagicrock
@Override
public int getCost()
{
return 0;
return 7;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment