summaryrefslogtreecommitdiff
path: root/Penguloon/Enemies/PurpleBalloon.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Penguloon/Enemies/PurpleBalloon.cs')
-rw-r--r--Penguloon/Enemies/PurpleBalloon.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Penguloon/Enemies/PurpleBalloon.cs b/Penguloon/Enemies/PurpleBalloon.cs
new file mode 100644
index 0000000..30a81dc
--- /dev/null
+++ b/Penguloon/Enemies/PurpleBalloon.cs
@@ -0,0 +1,16 @@
+using Penguloon.Levels;
+
+namespace Penguloon.Enemies
+{
+ class PurpleBalloon : EnemyBase
+ {
+ public PurpleBalloon(Map map) : base(map)
+ {
+ this.Texture = ContentManager.GetTexture("Enemies/purple");
+ this.Speed = 85f;
+ this.Health = 1;
+ this.ChildObject = typeof(OrangeBalloon);
+ this.HealthToTake = 6;
+ }
+ }
+} \ No newline at end of file