// ogl/skills.js

/*
  3EProfiler character sheet source file.
  Copyright (C) 2007 Myth-Weavers Games
  **
*/

// **

// Skill information used by 3EProfiler that was released by WotC under
// the Open Gaming License (OGL). This file however, is not released under
// the OGL (see above).

var abilityKeys = [
  , // zero index undefined.
  'Str',
  'Dex',
  'Con',
  'Int',
  'Wis',
  'Cha'
];

// Defines the key abilities for each set of core skills.
var skillKeys = {
  'acrobatics': 2,
  'bluff': 6,
  'climb': 1,
  'computers': 4,
  'concentration': 5,
  'craft': 4,
  'diplomacy': 6,
  'disable device': 4,
  'disguise': 6,
  'drive': 2,
  'escape artist': 2,
  'gather information': 6,
  'handle animal' : 6,
  'intimidate': 6,
  'investigate': 4,
  'knowledge 1': 4,
  'knowledge 2': 4,
  'knowledge 3': 4,
  'knowledge 4': 4,
  'language' : 0,
  'medicine': 5,
  'notice': 5,
  'perform': 6,
  'pilot': 2,
  'profession': 5,
  'ride': 2,
  'search': 4,
  'sense motive': 5,
  'sleight of hand': 2,
  'stealth': 2,
  'survival': 5,
  'swim': 1
};


