From a42938d1553565e3d864fa46c04401bbb6f8d13f Mon Sep 17 00:00:00 2001 From: aldrikboy Date: Thu, 14 Dec 2017 23:35:47 +0100 Subject: New balloons & sounds. Objects can now shoot projectiles. --- Penguloon/Enemies/BlueBalloon.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Penguloon/Enemies/BlueBalloon.cs (limited to 'Penguloon/Enemies/BlueBalloon.cs') diff --git a/Penguloon/Enemies/BlueBalloon.cs b/Penguloon/Enemies/BlueBalloon.cs new file mode 100644 index 0000000..2490a09 --- /dev/null +++ b/Penguloon/Enemies/BlueBalloon.cs @@ -0,0 +1,16 @@ +using Penguloon.Levels; + +namespace Penguloon.Enemies +{ + class BlueBalloon : EnemyBase + { + public BlueBalloon(Map map) : base(map) + { + this.Texture = ContentManager.GetTexture("Enemies/blue"); + this.Speed = 45f; + this.Health = 1; + this.ChildObject = typeof(RedBalloon); + this.HealthToTake = 2; + } + } +} \ No newline at end of file -- cgit v1.2.3-70-g09d2