summaryrefslogtreecommitdiff
path: root/Penguloon/Enemies/YellowBalloon.cs
diff options
context:
space:
mode:
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