aboutsummaryrefslogtreecommitdiff
path: root/V3/Objects/Sprite/ZombieSprite.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/Objects/Sprite/ZombieSprite.cs')
-rw-r--r--V3/Objects/Sprite/ZombieSprite.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/V3/Objects/Sprite/ZombieSprite.cs b/V3/Objects/Sprite/ZombieSprite.cs
new file mode 100644
index 0000000..0cd1a19
--- /dev/null
+++ b/V3/Objects/Sprite/ZombieSprite.cs
@@ -0,0 +1,11 @@
+namespace V3.Objects.Sprite
+{
+ public sealed class ZombieSprite : AbstractSpriteCreature
+ {
+ protected override string TextureFile { get; } = "zombie";
+ protected override int AttackingFrames { get; } = 8;
+ protected override int DyingTextureIndex { get; } = 22;
+ protected override int SpecialTextureIndex { get; } = 36;
+ protected override int SpecialFrames { get; } = 8;
+ }
+} \ No newline at end of file