aboutsummaryrefslogtreecommitdiff
path: root/V3/Objects/Sprite/ZombieWithClubSprite.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/Objects/Sprite/ZombieWithClubSprite.cs')
-rw-r--r--V3/Objects/Sprite/ZombieWithClubSprite.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/V3/Objects/Sprite/ZombieWithClubSprite.cs b/V3/Objects/Sprite/ZombieWithClubSprite.cs
new file mode 100644
index 0000000..60abc24
--- /dev/null
+++ b/V3/Objects/Sprite/ZombieWithClubSprite.cs
@@ -0,0 +1,11 @@
+namespace V3.Objects.Sprite
+{
+ public sealed class ZombieWithClubSprite : AbstractSpriteCreature
+ {
+ protected override string TextureFile { get; } = "zombie_club";
+ 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