Advertisement
Guest User

backgroundsList.lua

a guest
Sep 26th, 2022
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. local this = {}
  2. this.none = {
  3. id = "none",
  4. name = "-None-",
  5. description = "No Background Selected"
  6. }
  7. this.agoraphobic = require('mer.characterBackgrounds.backgrounds.agoraphobic')
  8. this.artificer = require('mer.characterBackgrounds.backgrounds.artificer')
  9. this.barrowMagus = require('mer.characterBackgrounds.backgrounds.barrowMagus')
  10. this.blacksmith = require('mer.characterBackgrounds.backgrounds.blacksmith')
  11. this.bodyBuilder = require('mer.characterBackgrounds.backgrounds.bodyBuilder')
  12. this.brute = require('mer.characterBackgrounds.backgrounds.brute')
  13. this.bully = require('mer.characterBackgrounds.backgrounds.bully')
  14. this.childOfNature = require('mer.characterBackgrounds.backgrounds.childOfNature')
  15. this.dremoraBlood = require('mer.characterBackgrounds.backgrounds.bloodOfDremora')
  16. this.escapedSlave = require('mer.characterBackgrounds.backgrounds.escapedSlave')
  17. this.famedWarrior = require('mer.characterBackgrounds.backgrounds.famedWarrior')
  18. this.fencer = require('mer.characterBackgrounds.backgrounds.fencer')
  19. this.fisherman = require('mer.characterBackgrounds.backgrounds.fisherman')
  20. this.framed = require('mer.characterBackgrounds.backgrounds.framed')
  21. this.greenPact = require('mer.characterBackgrounds.backgrounds.greenPact')
  22. this.greyOne = require('mer.characterBackgrounds.backgrounds.greyChild')
  23. this.hyperactive = require('mer.characterBackgrounds.backgrounds.hyperactive')
  24. this.inheritance = require('mer.characterBackgrounds.backgrounds.inheritance')
  25. this.knifeThrower = require('mer.characterBackgrounds.backgrounds.knifeThrower')
  26. this.legionaireFather = require('mer.characterBackgrounds.backgrounds.legionaireFather')
  27. this.nightMage = require('mer.characterBackgrounds.backgrounds.nightMage')
  28. this.noble = require('mer.characterBackgrounds.backgrounds.noble')
  29. this.pacifist = require('mer.characterBackgrounds.backgrounds.pacifist')
  30. this.ratKing = require('mer.characterBackgrounds.backgrounds.ratKing')
  31. this.shopkeeper = require('mer.characterBackgrounds.backgrounds.shopkeeper')
  32. this.smallFrame = require('mer.characterBackgrounds.backgrounds.smallFrame')
  33. this.starChild = require('mer.characterBackgrounds.backgrounds.starChild')
  34.  
  35. --this.tongRaised = require('mer.characterBackgrounds.backgrounds.tongRaised') <- Problem line, no clue what the issue is
  36.  
  37. this.tracker = require('mer.characterBackgrounds.backgrounds.tracker')
  38. this.urchin = require('mer.characterBackgrounds.backgrounds.urchin')
  39. --this.aspectOfFlame = require('mer.characterBackgrounds.backgrounds.aspectOfFlame')
  40. --this.aspectOfFrost = require('mer.characterBackgrounds.backgrounds.aspectOfFrost')
  41.  
  42. return this
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement