Advertisement
MajorCooke

sounds.json example

Sep 5th, 2014
30,128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. {
  2. "mob.zombie.say": {
  3. "category": "hostile",
  4. "replace": true,
  5. "sounds": [
  6. {
  7. "name": "random.burp",
  8. "type": "event",
  9. "weight": 6
  10. },
  11. "mob/zombie/say1",
  12. "mob/zombie/say2",
  13. "mob/zombie/say3",
  14. "mob/zombie/say4",
  15. "mob/zombie/say5",
  16. "mob/zombie/say6",
  17. "mob/zombie/say7",
  18. "mob/zombie/say8"
  19. ]
  20. },
  21. "mob.zombie.hurt": {
  22. "category": "hostile",
  23. "replace": true,
  24. "sounds": [
  25. {
  26. "name": "random.burp",
  27. "type": "event",
  28. "weight": 6
  29. },
  30. "mob/zombie/hurt1",
  31. "mob/zombie/hurt2",
  32. "mob/zombie/hurt3",
  33. "mob/zombie/hurt4",
  34. "mob/zombie/hurt5",
  35. "mob/zombie/hurt6",
  36. "mob/zombie/hurt7",
  37. "mob/zombie/hurt8",
  38. "mob/zombie/hurt9",
  39. "mob/zombie/hurt10"
  40. ]
  41. },
  42. "mob.zombie.death": {
  43. "category": "hostile",
  44. "replace": true,
  45. "sounds": [
  46. {
  47. "name": "random.burp2",
  48. "type": "event",
  49. "weight": 4
  50. },
  51. "mob/zombie/death1",
  52. "mob/zombie/death2",
  53. "mob/zombie/death3",
  54. "mob/zombie/death4"
  55. ]
  56. },
  57. "game.tnt.primed": {
  58. "category": "block",
  59. "replace": true,
  60. "sounds": [
  61. {
  62. "name": "custom/fuse2",
  63. "pitch": 1
  64. }
  65. ]
  66. },
  67. "creeper.primed": {
  68. "category": "hostile",
  69. "replace": true,
  70. "sounds": [
  71. {
  72. "name": "custom/fuse2",
  73. "pitch": 2
  74. }
  75. ]
  76. },
  77. "random.burp": {
  78. "category": "player",
  79. "replace": true,
  80. "sounds": [
  81. "custom/belch1",
  82. "custom/belch3"
  83. ]
  84. },
  85. "random.burp2": {
  86. "category": "neutral",
  87. "replace": true,
  88. "sounds": [
  89. "custom/belch4",
  90. "custom/belch2"
  91. ]
  92. },
  93. "mob.ghast.scream": {
  94. "category": "hostile",
  95. "replace": true,
  96. "sounds": [
  97. "mob/ghast/scream1"
  98. ]
  99. },
  100. "random.explode": {
  101. "category": "block",
  102. "replace": true,
  103. "sounds": [
  104. "random/explode1",
  105. "random/explode2",
  106. "random/explode4"
  107. ]
  108. }
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement