Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1. {
  2. "data": {
  3. /* Type options are:
  4. "PokemartMain" - Spawns as the primary seller in a Poké Mart. Sells main items.
  5. "PokemartSecond" - Spawns as the secondary seller in a Poké Mart. Sells luxury items.
  6. "Spawn" - Spawns in the wild as a very rare seller.
  7.  
  8. More will be added as new shop types are added.
  9. */
  10. "type": "PokemartMain"
  11. },
  12. "textures": [
  13. {
  14. "name": "shopsecondman.png"
  15. }
  16. ],
  17. "names": [
  18. {
  19. "name": "Mr. Walker"
  20. },
  21. {
  22. "name": "Mr. Evans"
  23. },
  24. {
  25. "name": "Mr. Turner"
  26. },
  27. {
  28. "name": "Mr. Parker"
  29. }
  30. ],
  31. "chat": [
  32. {
  33. "hello": "Welcome to my Poké Mart. I hope you find something you like!",
  34. "goodbye": "See you next time."
  35. },
  36. {
  37. "hello": "Hello, welcome to the Poké Mart. How may I help you?",
  38. "goodbye": "Thank you for shopping at the Poké Mart. Have a nice day."
  39. },
  40. {
  41. "hello": "Hello there! Welcome to my Poké Mart. I have only the best Pokémon products for sale.",
  42. "goodbye": "Thank you for shopping at my store."
  43. },
  44. {
  45. "hello": "Welcome to my Poké Mart. Nice day for shopping, isn't it?",
  46. "goodbye": "Come back soon, won't you?"
  47. },
  48. {
  49. "hello": "Hello there, welcome to the Poké Mart! We have many specials today!",
  50. "goodbye": "Come see us again, won't you?"
  51. },
  52. {
  53. "hello": "Hey there, welcome to the Poké Mart. Looking for anything special?",
  54. "goodbye": "Okay, see ya next time."
  55. },
  56. {
  57. "hello": "How are you? Welcome to our Poké Mart! We've got some great gear for your Pokémon.",
  58. "goodbye": "Ciao, my friend. Come back anytime."
  59. },
  60. {
  61. "hello": "Hello, check out our Poké Mart! We have some useful Pokémon gear today.",
  62. "goodbye": "Come back again soon, okay?"
  63. },
  64. {
  65. "hello": "Hi, looking for the best Poké Mart? Well, you just found it!",
  66. "goodbye": "Leaving so soon? Well, make sure you come back even sooner!"
  67. }
  68. ],
  69. /*
  70. Only items listed in the items array will show up in the shop for sale. Any item can be sold to the shop however.
  71. Items layout:
  72. name - reference to the name entry in shopItems.json.
  73. multi - optional field, defaults to 1, changes cost of buying that item by that multiplier.
  74. rarity - optional field, from 0 - 1, if set the item set there will have a percentage chance of turning up at this shopkeeper. Refreshed every MC day.
  75. variation - optional field, true or false, if true the items price will vary between 0.9 and 1.1 times the default price. Defaults as True
  76. */
  77. "items": [
  78. {
  79. "name": "pixelmon:poke_ball",
  80. },
  81. {
  82. "name": "pixelmon:great_ball",
  83. },
  84. {
  85. "name": "pixelmon:ultra_ball",
  86. },
  87. {
  88. "name": "pixelmon:level_ball",
  89. },
  90. {
  91. "name": "pixelmon:moon_ball",
  92. },
  93. {
  94. "name": "pixelmon:friend_ball",
  95. },
  96. {
  97. "name": "pixelmon:love_ball",
  98. },
  99. {
  100. "name": "pixelmon:heavy_ball",
  101. },
  102. {
  103. "name": "pixelmon:fast_ball",
  104. },
  105. {
  106. "name": "pixelmon:repeat_ball",
  107. },
  108. {
  109. "name": "pixelmon:timer_ball",
  110. },
  111. {
  112. "name": "pixelmon:nest_ball",
  113. },
  114. {
  115. "name": "pixelmon:net_ball",
  116. },
  117. {
  118. "name": "pixelmon:dive_ball",
  119. },
  120. {
  121. "name": "pixelmon:luxury_ball",
  122. },
  123. {
  124. "name": "pixelmon:heal_ball",
  125. },
  126. {
  127. "name": "pixelmon:dusk_ball",
  128. },
  129. {
  130. "name": "pixelmon:sport_ball",
  131. },
  132. {
  133. "name": "pixelmon:quick_ball",
  134. },
  135. {
  136. "name": "pixelmon:lure_ball",
  137. }
  138. ]
  139. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement