From ced3d03bdb3ce866d832e03fb212865140905a9a Mon Sep 17 00:00:00 2001 From: Thomas Leyh Date: Sun, 24 Jul 2016 08:14:18 +0200 Subject: Add project files. --- V3/Objects/Sprite/ZombieWithClubSprite.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 V3/Objects/Sprite/ZombieWithClubSprite.cs (limited to 'V3/Objects/Sprite/ZombieWithClubSprite.cs') 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 -- cgit v1.2.1