00001 // This program is free software; you can redistribute it and/or modify 00002 // it under the terms of the GNU General Public License as published by 00003 // the Free Software Foundation; either version 2 of the License, or 00004 // (at your option) any later version. 00005 // 00006 // This program is distributed in the hope that it will be useful, 00007 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00008 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00009 // GNU Library General Public License for more details. 00010 // 00011 // You should have received a copy of the GNU General Public License 00012 // along with this program; if not, write to the Free Software 00013 // Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA 00014 00015 // $Id: book1skills.cxx,v 1.2 2008/02/12 19:51:05 plankowner Exp $ 00016 // 00017 // $Log: book1skills.cxx,v $ 00018 // Revision 1.2 2008/02/12 19:51:05 plankowner 00019 // This set of changes is all about documentation of the source files as well as setting up Doxygen documentation. 00020 // 00021 // Revision 1.1 2008/01/31 20:32:36 plankowner 00022 // Starting string catalogs of sorts.... 00023 // 00024 00025 static char *b1SkillTable[] = { 00026 "Admin", 00027 "Air/Raft", 00028 "Auto Pistol", 00029 "Auto Rifle", 00030 "Blade Combat", 00031 "Body Pistol", 00032 "Brawling", 00033 "Bribery", 00034 "Carbine", 00035 "Computer", 00036 "Electronic", 00037 "Engineering", 00038 "Forgery", 00039 "Forward Observer", 00040 "Gambling", 00041 "Gun Combat", 00042 "Gunnery", 00043 "Jack-of-T", 00044 "Laser Carbine", 00045 "Laser Rifle", 00046 "Leader", 00047 "Mechanical", 00048 "Medical", 00049 "Navigation", 00050 "Pilot", 00051 "Rifle", 00052 "SMG", 00053 "Ship's Boat", 00054 "Shotgun", 00055 "Steward", 00056 "Streetwise", 00057 "Tactics", 00058 "Vacc Suit", 00059 "Vehicle" 00060 }; 00061 00062 00070 char* lookupB1Skill(int ix){ 00071 return b1SkillTable[ix]; 00072 } 00073 00074 00075