1
0
cuberite-2a/src/Mobs/Silverfish.h
Bond-009 e585595ae6 Fixed some small passive mob issues (#4057)
* Chickens can be bred with seeds, beetroot seeds, melon seeds, or pumpkin seeds Ref: https://minecraft.gamepedia.com/Chicken#Baby_chicken
* Baby passive mobs don't drop items
* Fixed the size of some mobs
2017-10-21 17:55:46 +01:00

27 lines
308 B
C++

#pragma once
#include "AggressiveMonster.h"
class cSilverfish :
public cAggressiveMonster
{
typedef cAggressiveMonster super;
public:
cSilverfish(void) :
super("Silverfish", mtSilverfish, "entity.silverfish.hurt", "entity.silverfish.death", 0.3, 0.4)
{
}
CLASS_PROTODEF(cSilverfish)
} ;