# AweMUD Next Generation - Player class definitions
# Copyright (C) 2003,2004  AwesomePlay Productions Inc.
# Sean Middleditch <elanthis@awemud.net>

# Fighter class
class fighter {
  # basics
  about: Fighters are your basic hack-machines.  A fighter is all about combat.

  # experience
  primary: warrior
  difficulty: 100

  # stat minimums
  stat Strength: 50
  stat Fortitude: 50

  # skills
  attack: 100
}

# Thief class
class thief {
  # basics
  about: Thieves live large, albeit low.  A thief revels in the thrill of a hiest.

  # experience
  primary: rogue
  difficulty: 80

  # stat minimums
  stat Agility: 60

  # skills
  attack: 40
}

# vim: set shiftwidth=2 tabstop=2 expandtab:
