inherit "/std/races/standard"; void setup() { set_name( "creator" ); set_main_plural( "creators" ); set_long( "The creators are a collection of many races, all " + "enlightened and dedicated to the purpose of serving New Moon.\n" ); reset_get(); set_max_light(500); set_min_light(-100); } string query_desc( object ob ) { return "A creator of New Moon.\n"; } /* query_desc() */ void set_stats( object ob ) { ob->set_bonus_str( 10 ); ob->set_bonus_con( 10 ); ob->set_bonus_dex( 10 ); ob->set_bonus_int( 10 ); ob->set_bonus_wis( 10 ); ob->set_max_light( 500 ); ob->set_min_light( -100 ); } /* set_stats() */