Advertisement
Guest User

races

a guest
Apr 28th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. if race.lower()=="halfling":
  2. feet,inches=inchesToFeet(random.randint(46,50))
  3. wieght=random.randint(75,85)
  4. age=random.randint(17,30)
  5. vision="Normal"
  6. languages=[Common,Elven,getLang()]
  7. if race.lower()=="dwarf":
  8. feet,inches=inchesToFeet(random.randint(51,57))
  9. wieght=random.randint(160,220)
  10. age=random.randint(17,170)
  11. vision="Low-light"
  12. languages=[Common,Dwarven]
  13. if race.lower()=="human":
  14. feet,inches=inchesToFeet(random.randint(66,74))
  15. wieght=random.randint(135,220)
  16. age=random.randint(17,30)
  17. vision="Normal"
  18. languages=[Common,Elven,getLang()]
  19. if race.lower()=="eladrin":
  20. feet,inches=inchesToFeet(random.randint(65,73))
  21. wieght=random.randint(130,180)
  22. age=random.randint(17,250)
  23. vision="Low-light"
  24. languages=[Common,Elven]
  25. if race.lower()=="tiefling":
  26. feet,inches=inchesToFeet(random.randint(66,74))
  27. wieght=random.randint(140,230)
  28. age=random.randint(17,250)
  29. vision="Normal"
  30. languages=[Common,Elven,getLang()]
  31. if race.lower()=="half-elf":
  32. feet,inches=inchesToFeet(random.randint(65,74))
  33. wieght=random.randint(130,190)
  34. age=random.randint(14,45)
  35. vision="Low-light"
  36. languages=[Common,Elven,getLang()]
  37. if race.lower()=="elf":
  38. feet,inches=inchesToFeet(random.randint(64,72))
  39. wieght=random.randint(130,170)
  40. age=random.randint(17,250)
  41. vision="Low-light"
  42. languages=[Common,Elven]
  43. if race.lower()=="dragonborn":
  44. feet,inches=inchesToFeet(random.randint(74,80))
  45. wieght=random.randint(220,320)
  46. age=random.randint(14,30)
  47. vision="Normal"
  48. languages=[Common,Draconic]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement