diff options
| author | aldrikboy <aldrikboy@gmail.com> | 2018-01-23 13:31:50 +0100 |
|---|---|---|
| committer | aldrikboy <aldrikboy@gmail.com> | 2018-01-23 13:31:50 +0100 |
| commit | c574b1243c572d774c7430f4495b1d6b490f9fbc (patch) | |
| tree | 4cb103a840d48513dad81545869483b42216c9e7 /Penguloon/Enemies | |
| parent | 45bbe9f283b30f03167548c2b41eee22784a974f (diff) | |
Balancing
Diffstat (limited to 'Penguloon/Enemies')
| -rw-r--r-- | Penguloon/Enemies/DarkRainbowBalloon.cs | 2 | ||||
| -rw-r--r-- | Penguloon/Enemies/PurpleBalloon.cs | 2 | ||||
| -rw-r--r-- | Penguloon/Enemies/RainbowBalloon.cs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Penguloon/Enemies/DarkRainbowBalloon.cs b/Penguloon/Enemies/DarkRainbowBalloon.cs index c1349be..6ff599a 100644 --- a/Penguloon/Enemies/DarkRainbowBalloon.cs +++ b/Penguloon/Enemies/DarkRainbowBalloon.cs @@ -7,7 +7,7 @@ namespace Penguloon.Enemies public DarkRainbowBalloon(Map map) : base(map) { this.Texture = ContentManager.GetTexture("Enemies/rainbow_dark"); - this.Speed = 105f; + this.Speed = 135f; this.Health = 1; this.ChildObject = typeof(RainbowBalloon); this.HealthToTake = 8; diff --git a/Penguloon/Enemies/PurpleBalloon.cs b/Penguloon/Enemies/PurpleBalloon.cs index 30a81dc..1f27297 100644 --- a/Penguloon/Enemies/PurpleBalloon.cs +++ b/Penguloon/Enemies/PurpleBalloon.cs @@ -7,7 +7,7 @@ namespace Penguloon.Enemies public PurpleBalloon(Map map) : base(map) { this.Texture = ContentManager.GetTexture("Enemies/purple"); - this.Speed = 85f; + this.Speed = 95f; this.Health = 1; this.ChildObject = typeof(OrangeBalloon); this.HealthToTake = 6; diff --git a/Penguloon/Enemies/RainbowBalloon.cs b/Penguloon/Enemies/RainbowBalloon.cs index 3947201..2b4d889 100644 --- a/Penguloon/Enemies/RainbowBalloon.cs +++ b/Penguloon/Enemies/RainbowBalloon.cs @@ -7,7 +7,7 @@ namespace Penguloon.Enemies public RainbowBalloon(Map map) : base(map) { this.Texture = ContentManager.GetTexture("Enemies/rainbow"); - this.Speed = 85f; + this.Speed = 115f; this.Health = 1; this.ChildObject = typeof(PurpleBalloon); this.HealthToTake = 7; |
