summaryrefslogtreecommitdiff
path: root/Penguloon/Enemies/YellowBalloon.cs
diff options
context:
space:
mode:
authoraldrikboy <aldrikboy@gmail.com>2017-12-19 17:20:23 +0100
committeraldrikboy <aldrikboy@gmail.com>2017-12-19 17:20:23 +0100
commit12c565cbb7208b44bd7654289bbac2824901f118 (patch)
tree98b5fbcd6712433a790e8ae72424e30223a67c82 /Penguloon/Enemies/YellowBalloon.cs
parent42671ab55f65af3ace94c50263b16898d32ac692 (diff)
ye
Diffstat (limited to 'Penguloon/Enemies/YellowBalloon.cs')
-rw-r--r--Penguloon/Enemies/YellowBalloon.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Penguloon/Enemies/YellowBalloon.cs b/Penguloon/Enemies/YellowBalloon.cs
new file mode 100644
index 0000000..4a8412a
--- /dev/null
+++ b/Penguloon/Enemies/YellowBalloon.cs
@@ -0,0 +1,15 @@
+using Penguloon.Levels;
+namespace Penguloon.Enemies
+{
+ class YellowBalloon : EnemyBase
+ {
+ public YellowBalloon(Map map) : base(map)
+ {
+ this.Texture = ContentManager.GetTexture("Enemies/yellow");
+ this.Speed = 45f;
+ this.Health = 1;
+ this.ChildObject = typeof(BlueBalloon);
+ this.HealthToTake = 3;
+ }
+ }
+} \ No newline at end of file