Advertisement
Guest User

race2.gd 2

a guest
Oct 17th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1.  
  2. extends Node
  3. var namefile = load("res://files/scripts/characters/names.gd").new()
  4. var names = namefile.names
  5.  
  6. var races = {
  7. Human = {
  8. ...
  9. },
  10.  
  11. "Beastkin Pony" = {
  12. bodyshape = ['bestial'],
  13. description = "The Beastkin Pony race is somewhat distant, yet not unheard of in southern regions. Some individuals have made it very far by adopting a nomadic lifestyle, making the race common enough to be recognized by most. The Ponykin population is relatively small, due to dealing with territorial oppression from humanoid races.",
  14. details = "[color=aqua]Racial trait: Increased Energy.[/color]\n\n[color=yellow]Stat potential: Strength - 5, Agility - 5, Magic - 2, Endurance - 6. [/color]",
  15. tail = ['horse'],
  16. ears = ['short_furry'],
  17. skincov = ['full_body_fur'],
  18. furcolor = ['white', 'gray', 'black_white', 'black_gray', 'black', 'brown'],
  19. haircolor = ['blond', 'red', 'auburn', 'brown', 'gray,', 'black'],
  20. legs = ['fur_covered'],
  21. arms = ['fur_covered'],
  22. eyecolor = ['black', 'green', 'brown', 'hazel'],
  23. stats = {str_max = 5,
  24. agi_max = 4,
  25. maf_max = 2,
  26. end_max = 6,
  27. energy_max = 140}
  28. },
  29.  
  30. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement