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

# Human race
race human {
  # basics
  adj: human
  body: humanoid

  # description
  about: Humans are perhaps the most versatile of the races.  Looked down \
    upon by the other races for their ambition, humans often are capable of \
    reaching achievements far quicker than the other races.

  # eye colors
  eyes: brown
  eyes: blue
  eyes: green
  eyes: gray
  eyes: black

  # hair colors
  hair: brown
  hair: gray
  hair: white
  hair: black
  hair: blonde
  hair: red

  # skin colors
  skin: fair
  skin: dark
  skin: tan
}

# Elven race
race elf {
  # basics
  adj: elven
  body: humanoid

  # description
  about: Elves are tall, graceful people.  Usually living in the forest, \
    the elven people have an affinity for nature, and abhor the destruction \
    wrought to the lands by humans.  Elves live exceptionally long lives.

  desc: {.Name} stands tall, with an air of graceful nobility.  {.Hair} \
    frames {.his} angular facial features.  {.His} \
    {if .eyecolor = 'white'}shining white{elif .eyecolor = 'silver'}\
    magnificent silver{else}deep {.eyecolor}{endif} eyes stand starkly \
    apart from the {.skincolor} skin of {.his} {.build} frame.

  # stat mods
  stat strength: -5
  stat fortitude: -10
  stat spirit: 5
  stat agility: 10

  # age and lifespan
  min_age: 50
  max_age: 400
  lifespan: 2000

  # eye colors
  eyes: brown
  eyes: blue
  eyes: green
  eyes: black

  # hair colors
  hair: brown
  hair: silver
  hair: white
  hair: black
  hair: blonde
  hair: green
  hair: blue
  hair: red

  # skin colors
  skin: fair
  skin: tan
}

# Half-elven race (half elf, half human)
race half-elf {
  # basics
  adj: half-elven
  body: humanoid

  about: The product of a pairing between elf and human, half-elves are often \
    out casts in both communities; elves find them too much like the human \
    barbarians, and humans find the half-elves to be too much like the odd \
    fey-folk.  Half-elves resemble their human ancestry more than their \
    elven heritage.

  # age and lifespan
  min_age: 20
  max_age: 40
  lifespan: 150

  # eye colors
  eyes: brown
  eyes: blue
  eyes: green
  eyes: black

  # hair colors
  hair: brown
  hair: silver
  hair: white
  hair: black
  hair: blonde
  hair: green
  hair: blue
  hair: red

  # skin colors
  skin: fair
  skin: dark
  skin: tan
}

# Kalruan race (cat-people)
race kalruan {
  # basics
  adj: kalruan
  body: humanoid

  about: Mischevious humanoids that look like nothing but a cross between \
    a cat and a human.  The kalruan have a fine coat of fur covering their \
    bodies, tails, and feline ears, and have cat-like features about their \
    face.  The kalruan are known for their hedonistic behaviour.

  desc: {.Name} stands just over 5 feet in height.  {.His} {.build} body and \
    long tail are covered in {.skincolor} fur.  {.He} has {.hair}.  {.His} \
    eyes are {if .eyecolor = 'green'}a brilliant green{else}{.eyecolor}{endif} \
    and twinkle with a mischevious spark.

  # stat mods
  stat spirit: 5
  stat agility: 10
  stat fortitude: -5
  stat willpower: -10

  # age and lifespan
  min_age: 12
  max_age: 20
  lifespan: 60

  # eye colors
  eyes: brown
  eyes: blue
  eyes: green
  eyes: black
  eyes: yellow

  # hair colors
  hair: brown
  hair: black
  hair: red
  hair: orange

  # fur colors
  skin_type: fur
  skin: brown
  skin: black
  skin: red
  skin: orange
  skin: tan
}

# Dwarvish race
race dwarf {
  # basics
  adj: dwarven
  body: humanoid

  about: Tough as stone, and not much better looking, dwarves are a race of \
    beings who live in the earth itself.  Their craftsmanship, in both metal \
    and stone, is reknown by all.  Despite their shorter heights, a dwarf is \
    often far stronger than the other races; they are also excellent warriors.

  desc: {.Name} is short and {.build} with a long {.haircolor} beard.  {.His} \
    {.eyecolor} eyes look almost like gems set in the {.skincolor} rocky skin \
    of {.his} face, topped with {.hair}.

  # stat mods
  stat strength: 5
  stat fortitude: 10
  stat spirit: -15

  # age and lifespan
  min_age: 30
  max_age: 100
  lifespan: 400

  # eye colors
  eyes: brown
  eyes: black
  eyes: red

  # hair colors
  hair: brown
  hair: white
  hair: black
  hair: blonde
  hair: red

  # skin colors
  skin: tan
  skin: reddish
  skin: dark
  skin: granite
}

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