Guest User

Untitled

a guest
Oct 30th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 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": "shopman2.png"
  15. },
  16. {
  17. "name": "shopman.png"
  18. },
  19. {
  20. "name": "shopman3.png"
  21. },
  22. {
  23. "name": "shopman4.png"
  24. },
  25. {
  26. "name": "shopman5.png"
  27. }
  28. ],
  29. "names": [
  30. {
  31. "name": "Poke Balls"
  32. }
  33. ],
  34. "chat": [
  35. {
  36. "hello": "Welcome to my Poké Mart. I hope you find something you like!",
  37. "goodbye": "See you next time."
  38. },
  39. {
  40. "hello": "Hello, welcome to the Poké Mart. How may I help you?",
  41. "goodbye": "Thank you for shopping at the Poké Mart. Have a nice day."
  42. },
  43. {
  44. "hello": "Hello there! Welcome to my Poké Mart. I have only the best Pokémon products for sale.",
  45. "goodbye": "Thank you for shopping at my store."
  46. },
  47. {
  48. "hello": "Welcome to my Poké Mart. Nice day for shopping, isn't it?",
  49. "goodbye": "Come back soon, won't you?"
  50. },
  51. {
  52. "hello": "Hello there, welcome to the Poké Mart! We have many specials today!",
  53. "goodbye": "Come see us again, won't you?"
  54. },
  55. {
  56. "hello": "Hey there, welcome to the Poké Mart. Looking for anything special?",
  57. "goodbye": "Okay, see ya next time."
  58. },
  59. {
  60. "hello": "How are you? Welcome to our Poké Mart! We've got some great gear for your Pokémon.",
  61. "goodbye": "Ciao, my friend. Come back anytime."
  62. },
  63. {
  64. "hello": "Hello, check out our Poké Mart! We have some useful Pokémon gear today.",
  65. "goodbye": "Come back again soon, okay?"
  66. },
  67. {
  68. "hello": "Hi, looking for the best Poké Mart? Well, you just found it!",
  69. "goodbye": "Leaving so soon? Well, make sure you come back even sooner!"
  70. }
  71. ],
  72. /*
  73. Only items listed in the items array will show up in the shop for sale. Any item can be sold to the shop however.
  74. Items layout:
  75. name - reference to the name entry in shopItems.json.
  76. multi - optional field, defaults to 1, changes cost of buying that item by that multiplier.
  77. 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.
  78. 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
  79. */
  80. "items": [
  81. {
  82. "name": "pixelmon:poke_ball",
  83. "variation": false
  84. },
  85. {
  86. "name": "pixelmon:great_ball"
  87. },
  88. {
  89. "name": "pixelmon:ultra_ball",
  90. "multi": 1.1,
  91. "rarity": 0.7
  92. },
  93. {
  94. "name": "pixelmon:luxury_ball",
  95. "rarity": 0.3
  96. },
  97. {
  98. "name": "pixelmon:dusk_ball"
  99. "variation": false
  100. },
  101. {
  102. "name": "pixelmon:super_potion"
  103. },
  104. {
  105. "name": "pixelmon:hyper_potion",
  106. "rarity": 0.5
  107. },
  108. {
  109. "name": "pixelmon:max_potion",
  110. "rarity": 0.1,
  111. "multi": 0.8
  112. },
  113. {
  114. "name": "pixelmon:full_restore",
  115. "rarity": 0.1
  116. },
  117. {
  118. "name": "pixelmon:full_heal"
  119. },
  120. {
  121. "name": "pixelmon:antidote",
  122. "rarity": 0.5
  123. },
  124. {
  125. "name": "pixelmon:awakening",
  126. "rarity": 0.5
  127. },
  128. {
  129. "name": "pixelmon:burn_heal",
  130. "rarity": 0.5
  131. },
  132. {
  133. "name": "pixelmon:ice_heal",
  134. "rarity": 0.5
  135. },
  136. {
  137. "name": "pixelmon:paralyze_heal",
  138. "rarity": 0.5
  139. },
  140. {
  141. "name": "pixelmon:revive",
  142. "rarity": 0.8
  143. }
  144. ]
  145. }
Add Comment
Please, Sign In to add comment