diff options
| author | aldrikboy <aldrikboy@gmail.com> | 2017-12-19 17:20:23 +0100 |
|---|---|---|
| committer | aldrikboy <aldrikboy@gmail.com> | 2017-12-19 17:20:23 +0100 |
| commit | 12c565cbb7208b44bd7654289bbac2824901f118 (patch) | |
| tree | 98b5fbcd6712433a790e8ae72424e30223a67c82 /Penguloon/Enemies/PurpleBalloon.cs | |
| parent | 42671ab55f65af3ace94c50263b16898d32ac692 (diff) | |
ye
Diffstat (limited to 'Penguloon/Enemies/PurpleBalloon.cs')
| -rw-r--r-- | Penguloon/Enemies/PurpleBalloon.cs | 16 |
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 |
