races.js 1.5 KB

123456789101112131415161718192021222324252627282930
  1. var race_list = {
  2. {name: 'dragonborn', speed: 30, size: 'M', abilities: {str: 2, cha: 1}, },
  3. {name: 'hill dwarf', speed: 25, size: 'M', abilities: {con: 2, wis: 1}, hp: 1, prof: {'battleaxe', 'handaxe', 'light hammer', 'warhammer'}, },
  4. {name: 'mountain dwarf', speed: 25, size: 'M', abilities: {con: 2, str: 1}, prof: {'light armor', 'medium armor', 'battleaxe', 'handaxe', 'light hammer', 'warhammer'}, },
  5. {name: 'high elf', speed: 30, size: 'M', abilities: {dex: 2, int: 1}, prof: {'longsword', 'shortsword', 'shortbow', 'longbow'}},
  6. {name: 'wood elf', speed: 35, size: 'M', abilities: {dex: 2, wis: 1}, prof: {'longsword', 'shortsword', 'shortbow', 'longbow'}},
  7. {name: 'deep gnome', speed: 25, size: 'S', abilities: {int: 2, dex: 1}, },
  8. {name: 'rock gnome', speed: 25, size: 'S', abilities: {int: 2, con: 1}, },
  9. {name: 'forest gnome', speed: 25, size: 'S', abilities: {int: 2, con: 1}, },
  10. {name: 'half elf', speed: 30, size: 'M', abilities: {cha: 2, any_two: 1}, },
  11. {name: 'lightfoot halfling', speed: 25, size: 'S', abilities: {dex: 2, cha: 1}, },
  12. {name: 'stout halfling', speed: 25, size: 'S', abilities: {dex: 2, con: 1}, },
  13. {name: 'half orc', speed: 30, size: 'M', abilities: {str: 2, con: 1}, /* savage attacks: extra roll of one damage die on critical */},
  14. {name: 'human', speed: 30, size: 'M', abilities: {str: 1, dex: 1, con: 1, int: 1, wis: 1, cha: 1},},
  15. {name: 'variant human', speed: 30, size: 'M', abilities: {any_two: 1}, feats: 1},
  16. {name: 'tiefling', speed: 30, size: 'M', abilities: {int: 1, cha: 2},},
  17. };