summaryrefslogtreecommitdiffstats
path: root/src/Mobs/NewSilverfish.h
blob: e056a054717a844f46682ec6da6b6734fa6a5b14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#pragma once

#include "ANewMonster.h"





class cNewSilverfish :
	public cNewMonster
{
	typedef cNewMonster super;
	
public:
	cNewSilverfish(void) :
		super("Silverfish", mtSilverfish, "mob.silverfish.hit", "mob.silverfish.kill", 0.3, 0.7)
	{
	}

	CLASS_PROTODEF(cNewSilverfish)
} ;