Advertisement
Guest User

Dracula 1 - Enemy Data

a guest
Sep 3rd, 2024
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. ```json
  2. {
  3. "name": "Renfield",
  4. "location": "Dracula's Chamber",
  5. "enemy_rarity": "boss",
  6. "enemy_type": "humanoid beast",
  7. "enemy_level": 5,
  8. "element": "physical",
  9. "clothing": "heavy armor",
  10. "headwear": "none",
  11. "weapon": {"weapon_name": "fangs", "weapon_type": "body", "element": "physical"},
  12. "magic": {"ability_name": "Bloodlust", "damage": 30, "element": "physical"},
  13. "hair": "bald",
  14. "body_color": "#8B4513",
  15. "skin_tone": "#8B4513",
  16. "clothing_color": "#000000",
  17. "gender": "male",
  18. "flying": false,
  19. "ghost": false,
  20. "friendliness": 0,
  21. "quote_if_friendly": "",
  22. "quote_if_hostile": "Master's will be done!"
  23. }
  24. ```
  25.  
  26. ```json
  27. {
  28. "name": "Vampire Thrall",
  29. "location": "Crypt",
  30. "enemy_rarity": "generic",
  31. "enemy_type": "human",
  32. "enemy_level": 3,
  33. "element": "physical",
  34. "clothing": "cloak",
  35. "headwear": "hood",
  36. "weapon": {"weapon_name": "fangs", "weapon_type": "body", "element": "physical"},
  37. "magic": {"ability_name": "Hypnotic Gaze", "damage": 15, "element": "physical"},
  38. "hair": "short",
  39. "body_color": "#000000",
  40. "skin_tone": "#8B4513",
  41. "clothing_color": "#8B4513",
  42. "gender": "male",
  43. "flying": false,
  44. "ghost": false,
  45. "friendliness": 0,
  46. "quote_if_friendly": "",
  47. "quote_if_hostile": "Join us in eternal darkness!"
  48. }
  49. ```
  50.  
  51. ```json
  52. {
  53. "name": "Ghoul",
  54. "location": "Library",
  55. "enemy_rarity": "generic",
  56. "enemy_type": "zombie",
  57. "enemy_level": 2,
  58. "element": "physical",
  59. "clothing": "none",
  60. "headwear": "none",
  61. "weapon": {"weapon_name": "claws", "weapon_type": "body", "element": "physical"},
  62. "magic": {"ability_name": "Decay", "damage": 10, "element": "physical"},
  63. "hair": "bald",
  64. "body_color": "#708090",
  65. "skin_tone": "#708090",
  66. "clothing_color": "#000000",
  67. "gender": "other",
  68. "flying": false,
  69. "ghost": false,
  70. "friendliness": 0,
  71. "quote_if_friendly": "",
  72. "quote_if_hostile": "Brains... must have brains!"
  73. }
  74. ```
  75.  
  76. ```json
  77. {
  78. "name": "Bat Swarm",
  79. "location": "Ballroom",
  80. "enemy_rarity": "generic",
  81. "enemy_type": "bat",
  82. "enemy_level": 1,
  83. "element": "wind",
  84. "clothing": "none",
  85. "headwear": "none",
  86. "weapon": {"weapon_name": "teeth", "weapon_type": "body", "element": "physical"},
  87. "magic": {"ability_name": "Sonic Scream", "damage": 5, "element": "wind"},
  88. "hair": "none",
  89. "body_color": "#000000",
  90. "skin_tone": "#000000",
  91. "clothing_color": "#000000",
  92. "gender": "none",
  93. "flying": true,
  94. "ghost": false,
  95. "friendliness": 0,
  96. "quote_if_friendly": "",
  97. "quote_if_hostile": "Fluttering wings of doom!"
  98. }
  99. ```
  100.  
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement