inherit WEAPON_OBJ; void setup() { set_name("sickle"); set_short("small sickle"); add_adjective("small"); set_long("This is a crescent shaped blade connected to a small handle. " "It is a simple tool made for collecting herbs and doing gardening.\n"); set_weight(9); set_value(800); new_weapon(2000); set_damage_chance(15); add_attack("slice", 65, ({ 5, 5, 20 }), "sharp", "sharp"); add_attack("stab", 50, ({ 10, 4, 15 }), "sharp", "pierce"); set_material("metal"); } /* setup() */