#include "path.h" inherit "/obj/monster"; void setup() { set_name("Ship Captain"); set_short("Captain"); add_alias("captain"); set_long("This is the captain of the ship you are currently "+ "trespassing aboard, needless to say he does not look "+ "in a particularly good mood, you get the feeling that "+ "because he has travelled a lot he is knowledgeable in "+ "many forms of self-defence, be careful.\n"); set_level(300); set_al(-50); set_class("fighter"); set_aggressive(0); add_attack("blunt-hands",0,80,({20,5,10}),50,({10,3,5}),"blunt-hands"); add_attack("blunt-feet",0,20,({30,5,20}),50,({20,5,5}),"blunt-feet"); }