#11
names        "sword";
short_desc   "Tatt's sword";
desc         "Tatt's great sword lies here.";
long_desc    "A mighty weapon indeed!" [format];
item_type    Sword;
object_flags [special];
weight       1;
size         Medium;
cost         999999;
condition    100;
*script
*{
*    trigger get ( this )
*    {
*        if ( actor.name == "Tatt" )
*            tell actor "Yes master!";
*        else
*        {
*            tell actor "You are not my master!";
*            obj_from_char this actor;
*        }
*    }
*};
end;