Skip to content
Snippets Groups Projects
Commit 4ae55461 authored by Harry Wyatt's avatar Harry Wyatt
Browse files

More balancing

parent 5fdbebfb
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ class Orc(Enemy):
# how to scale stats with levels
self.hp_scale = 2
self.attack_scale = 2
self.attack_scale = 3
self.defense_scale = 2
self.luck_scale = 0
......@@ -87,7 +87,7 @@ class Golbin(Enemy):
# how to scale stats with levels
self.hp_scale = 2
self.attack_scale = 2
self.attack_scale = 4
self.defense_scale = 3
self.luck_scale = 3
......@@ -114,7 +114,7 @@ class Wolf(Enemy):
# how to scale stats with levels
self.hp_scale = 3
self.attack_scale = 3
self.attack_scale = 4
self.defense_scale = 1
self.luck_scale = 4
......@@ -141,7 +141,7 @@ class Minion(Enemy):
# how to scale stats with levels
self.hp_scale = 3
self.attack_scale = 2
self.attack_scale = 3
self.defense_scale = 3
self.luck_scale = 6
......
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