Advertisement
Guest User

petblock

a guest
Nov 23rd, 2018
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 84.42 KB | None | 0 0
  1. #######################################################################
  2. # PetBlocks #
  3. # by Shynixn #
  4. #######################################################################
  5.  
  6. # You can find the permissions at the official documentation.
  7. # https://shynixn.github.io/PetBlocks/build/html/gettingstarted/permissions.html#permissionlist
  8.  
  9. ############################
  10.  
  11. # Data-collecting settings
  12.  
  13. # Settings to send anonymous stats to https://bstats.org/plugin/bukkit/PetBlocks.
  14. # As this does not have an impact on your PetBlocks experience at all I would like you to set it on true as knowing that my
  15. # plugin gets used by many server helps me focusing on new updates ;)
  16.  
  17. ############################
  18.  
  19. metrics: true
  20.  
  21. ############################
  22.  
  23. # Database settings
  24.  
  25. # All petblocks are stored in a local file by default.
  26. # It is recommend to edit these settings when you are using a MySQL database
  27. # and have got a bigger player-base. Also if you want to use the same pets
  28. # cross servers. (BungeeCord)
  29.  
  30. ############################
  31.  
  32. sql:
  33. enabled: false
  34. host: localhost
  35. port: 3306
  36. database: ''
  37. usessl: false
  38. username: ''
  39. password: ''
  40.  
  41. ############################
  42.  
  43. # Command settings
  44.  
  45. # Instead of setting the commands inside of the plugin.yml, I believe you should be able to customize
  46. # the whole command by yourself. Name, description, permission customize it to your needs.
  47.  
  48. # petblocks-gui: Settings for the command to open the petblock-GUI
  49. # petblock-configuration: Settings for the command to manage petblock-configuration
  50.  
  51. ############################
  52.  
  53. petblocks-gui:
  54. enabled: true
  55. command: pety
  56. useage: /<command>
  57. description: Opens the pet GUI.
  58. permission: petblocks.command.use
  59. permission-message: Nie posiadasz wymaganych uprawnien
  60. petblocks-configuration:
  61. enabled: true
  62. command: pet
  63. useage: /<command>
  64. description: Command to configure pets.
  65. permission: petblocks.command.admin
  66. permission-message: Nie posiadasz wymaganych uprawnien
  67.  
  68.  
  69. ############################
  70.  
  71. # Pet settings
  72.  
  73. # Settings to customize the pet itself
  74.  
  75. # age-small-ticks: Amount of ticks until the pet grows up.
  76. # age-large-ticks: Amount of ticks until the pet dies.
  77. # age-max-ticks: Amount of ticks until the pet stops aging.
  78. # age-death-on-maxticks: Should the pet die after it has reached the max amount of ticks?
  79.  
  80. # combat-invincible: Should petblocks be able to die when being punched?
  81. # combat-health: Amount of health when petblocks are not invincible
  82.  
  83. # warp-teleports-in-seconds: Amount of seconds a petblock waits to teleport after his owner
  84.  
  85. # flee-flees-in-combat: Should petblocks despawn when their owner is in combat?
  86. # flee-reappears-in-seconds: Amount of seconds the petblock reappears after fleeing the the combat.
  87.  
  88. # follow-amount-blocks-away: Amount of blocks the pet does not get in touch with it's owner
  89. # follow-teleport-fall: Should the pet fall from the owner's head when the owner is teleporting to another location?
  90. # follow-max-range-teleport: Amount of blocks the pet can stay away from the owner before it teleports back to the owner
  91. # follow-carry: Should the pet be able to carry with the player's hands? (Very unstable and not recommend for many types of server)
  92. # follow-flying-wall-colliding: Should the pet not be able to fly through blocks?
  93. # follow-afraid-water: Should the pet be afraid of water?
  94. # follow-afraid-water: Should the pet display angry particles when getting in touch with water?
  95.  
  96. # feeding-enabled: Should feeding pets be possible?
  97. # feeding-click-particle: Particle effect which gets displayed when a player feeds his pet with a carrot.
  98. # feeding-click-sound: Sound which gets played when a player feeds his pet with a carrot.
  99.  
  100. # design-max-petname-length: The max amount of letters a name can be
  101. # design-show-damage-animation: Should the petlock display damage animation when being hit? (Works only for below 1.8.x)
  102. # design-sounds-other-players: Should the petblock sounds be audible for other players?
  103. # design-petname-blacklist: Names which are forbidden to use as pet names!
  104.  
  105. # modifier-riding-speed: Speed of the petblock when the owner is riding on it (1 = default speed, 0.5 = half speed,...)
  106. # modifier-walking-speed: Speed of the petblock when it casually follows the owner (1 = default speed, 0.5 = half speed,...)
  107. # modifier-climbing-height: Amount of blocks the petblock can jump when the it casually follows the owner (1 = default height, 0.5 = half height,...)
  108.  
  109. ############################
  110.  
  111. pet:
  112. age:
  113. small-ticks: 0
  114. large-ticks: 1
  115. max-ticks: 1
  116. death-on-maxticks: false
  117. combat:
  118. invincible: true
  119. health: 20.0
  120. warp:
  121. teleports-in-seconds: 0
  122. flee:
  123. flees-in-combat: false
  124. reappears-in-seconds: 15
  125. follow:
  126. amount-blocks-away: 2
  127. teleport-fall: true
  128. max-range-teleport: 50
  129. carry: false
  130. flying-wall-colliding: true
  131. running-hitbox-height: -1.5
  132. afraid-water: false
  133. afraid-water-particles: false
  134. feeding:
  135. enabled: true
  136. click-particle:
  137. name: 'heart'
  138. speed: 0.1
  139. amount: 20
  140. offx: 1.0
  141. offy: 1.0
  142. offz: 1.0
  143. click-sound:
  144. name: 'EAT'
  145. volume: 1.0
  146. pitch: 1.0
  147. design:
  148. max-petname-length: 20
  149. show-damage-animation: true
  150. sounds-other-players: true
  151. particles-other-players: true
  152. petname-blacklist:
  153. - 'petty'
  154. - 'shitty'
  155. modifier:
  156. riding-speed: 1.0
  157. walking-speed: 1.0
  158. climbing-height: 1.0
  159.  
  160. ############################
  161.  
  162. # World-region settings
  163.  
  164. # Settings to manage spawning of petblocks in certain worlds or worldGuard-regions
  165. # DO NOT PUT 'all' into both included and excluded!
  166.  
  167. # world-excluded: Add worlds where the petblocks should not be able to spawn
  168. # (When 'all' is added to excluded all worlds are disabled for spawning except the added worlds to included)
  169. # world-included: Add worlds where the petblocks should be able to spawn
  170. # (When 'all' is added to included all worlds are enabled for spawning except the added worlds to excluded)
  171.  
  172. # region-excluded: Add regions where the petblocks should not be able to spawn
  173. # (When 'all' is added to excluded all regions are disabled for spawning except the added regions to included)
  174. # region-included: Add regions where the petblocks should be able to spawn
  175. # (When 'all' is added to included all regions are enabled for spawning except the added regions to excluded)
  176.  
  177. ############################
  178.  
  179. world:
  180. excluded:
  181. - ''
  182. included:
  183. - 'all'
  184. region:
  185. excluded:
  186. - ''
  187. included:
  188. - 'all'
  189.  
  190. ############################
  191.  
  192. # Join settings
  193.  
  194. # Settings to manage joining of players and their petblocks
  195.  
  196. # join-enabled: Should the player receive a default pet when he enters the server?
  197. # join-overwrite-previous-pet: Should the player receive a default pet and overwrite any existing pets when he enters the server?
  198. # join-settings: Default pet-settings
  199.  
  200. ############################
  201.  
  202. join:
  203. enabled: false
  204. overwrite-previous-pet: false
  205. settings:
  206. petname: 'Default pet'
  207. engine: 1
  208. id: 2
  209. damage: 0
  210. unbreakable: false
  211. skin: ''
  212. enabled: true
  213. age: 1
  214. effect:
  215. name: 'largesmoke'
  216. speed: 0.01
  217. amount: 2
  218. offx: 0.5
  219. offy: 0.5
  220. offz: 0.5
  221.  
  222. ############################
  223.  
  224. # Messages settings
  225.  
  226. # Settings to adjust the messages
  227.  
  228. ############################
  229.  
  230. messages:
  231. prefix: '&5[&dPety&5]&d '
  232. default-petname: ":player's pet"
  233. naming-suggest-prefix: ''
  234. naming-suggest-clickable: '&5<<kliknij tutaj>> '
  235. naming-suggest-suffix: 'by zmienic nazwe petowi.'
  236. naming-suggest-hover: 'Kliknij mnie by zmienic nazwe petowi.'
  237. naming-success: 'Nazwa peta zostala zmieniona.'
  238. naming-error: 'Nie mozesz nazwac peta w ten sposob.'
  239. skullnaming-suggest-prefix: ''
  240. skullnaming-suggest-clickable: '&5<<kliknij tutaj>> '
  241. skullnaming-suggest-suffix: 'by zmienic skina petowi.'
  242. skullnaming-suggest-hover: 'Kliknij mnie by zmienic skina petowi.'
  243. skullnaming-success: 'Skin twojego peta zostal zmieniony.'
  244. skullnaming-error: 'Niepoprawny skin'
  245. called-success: 'Zawolales peta'
  246. toggle-spawn: 'Twoj pet zostal przywolany'
  247. toggle-despawn: 'Twoj pet zostal odwolany.'
  248. perms-ico-yes: '&aTak'
  249. perms-ico-no: '&cNie'
  250. no-perms: '&cNie posiadasz wymaganych uprawnien.'
  251.  
  252. ############################
  253.  
  254. # GUI-settings
  255.  
  256. # Settings for the petblock-gui
  257.  
  258. # settings-title: GUI title
  259. # settings-copy-skin: Should the skin of petblock-engine be applied when being selected?
  260. # settings-use-only-disable-pet-item: Removes the enable block from the GUI and uses the pet-item instead to spawn the pet.
  261. # settings-my-pet-position: Position in the GUI to show the currently selected pet
  262. # settings-my-pet-default-appearance:: Default skin of the petblock if the settings-copy-skin is disabled
  263.  
  264. # gui enabled: Should the the item be shown in the GUI?
  265. # gui position: Position of the item in of the GUI
  266. # gui page: Page of the item in of the GUI (PAGES: MAIN, WARDROBE)
  267. # gui id: item id in the GUI
  268. # gui damage: item damage in the the GUI
  269. # gui skin: item skin in the GUI (Name of the player [Shynixn] or the skin URL [textures.minecraft.net/texture/797884d451dc7b7729de2076cd6c4912865ade70391d1ccec3e95fb39f8c5e1])
  270. # gui name: item name in the GUI
  271. # gui unbreakable: item unbreakable tag in the GUI
  272. # gui lore: item lore in the GUI (Multiple lines support)
  273.  
  274. ############################
  275.  
  276. gui:
  277. settings:
  278. title: '&5&lPanel ustawien peta'
  279. copy-skin: true
  280. use-only-disable-pet-item: false
  281. default-engine: 1
  282. items:
  283. my-pet:
  284. position: 4
  285. default-appearance:
  286. id: 2
  287. damage: 0
  288. skin: 'textures.minecraft.net/texture/dfab7daeb8f333c7886a70ef30caf4dec4a8cd10493f23802f1516bdd23fcd'
  289. unbreakable: false
  290. empty-slot:
  291. enabled: true
  292. id: 160
  293. damage: 15
  294. skin: 'none'
  295. name: 'none'
  296. unbreakable: false
  297. lore:
  298. - 'none'
  299. previous-page:
  300. enabled: true
  301. position: 45
  302. id: 397
  303. damage: 3
  304. skin: 'textures.minecraft.net/texture/3ebf907494a935e955bfcadab81beafb90fb9be49c7026ba97d798d5f1a23'
  305. name: '&aPoprzednia strona'
  306. script: 'scrolling collection -45'
  307. unbreakable: false
  308. lore:
  309. - 'none'
  310. next-page:
  311. enabled: true
  312. position: 53
  313. id: 397
  314. damage: 3
  315. skin: 'textures.minecraft.net/texture/1b6f1a25b6bc199946472aedb370522584ff6f4e83221e5946bd2e41b5ca13b'
  316. name: '&aNastepna strona'
  317. script: 'scrolling collection 45'
  318. unbreakable: false
  319. lore:
  320. - 'none'
  321. back:
  322. enabled: true
  323. position: 49
  324. id: 166
  325. damage: 0
  326. skin: 'none'
  327. name: '&cWroc'
  328. unbreakable: false
  329. lore:
  330. - '&7Powrot do glownego okna.'
  331. enable-pet:
  332. enabled: true
  333. position: 22
  334. page: 'MAIN'
  335. id: 397
  336. damage: 3
  337. skin: 'textures.minecraft.net/texture/ad5fcd31287d63e7826ea760a7ed154f685dfdc7f3465732a96e619b2e1347'
  338. name: '&c&lPet odwolany'
  339. unbreakable: false
  340. lore:
  341. - '&7Kliknij by przywolac peta.'
  342. disable-pet:
  343. enabled: true
  344. position: 22
  345. page: 'MAIN'
  346. id: 397
  347. damage: 3
  348. skin: 'textures.minecraft.net/texture/f45c9acea8da71b4f252cd4deb5943f49e7dbc0764274b25a6a6f5875baea3'
  349. name: '&a&lPet przywolany'
  350. unbreakable: false
  351. lore:
  352. - '&7Kliknij by odwolac peta.'
  353. engine-settings:
  354. enabled: true
  355. position: 26
  356. page: 'MAIN'
  357. id: 397
  358. damage: 3
  359. skin: 'textures.minecraft.net/texture/8f14f3179b86f69b3efa7472dacaeb2339f6290d2d817362793348abd98e021'
  360. name: '&6&lRodzaj'
  361. unbreakable: false
  362. lore:
  363. - '&7Wybierz rodzaj peta.'
  364. wardrobe:
  365. enabled: true
  366. position: 18
  367. page: 'MAIN'
  368. id: 397
  369. damage: 3
  370. skin: 'textures.minecraft.net/texture/55507d6517eff952dd38fa8bc551dd6d6a7a5e4ea134519b44650ac1ffa59c3'
  371. name: '&6&lGarderoba'
  372. unbreakable: false
  373. lore:
  374. - '&7Zmien wyglad swojemu petowi.'
  375. sounds-enabled-pet:
  376. enabled: true
  377. position: 31
  378. page: 'MAIN'
  379. id: 397
  380. damage: 3
  381. skin: 'textures.minecraft.net/texture/cb9c706c85572f05efc4170ada791154de2b5378e6252aadc8d43b19c5564'
  382. name: '&a&lPet odciszony'
  383. unbreakable: false
  384. lore:
  385. - '&7Kliknij by wyciszyc swojego peta.'
  386. sounds-disabled-pet:
  387. enabled: true
  388. position: 31
  389. page: 'MAIN'
  390. id: 397
  391. damage: 3
  392. skin: 'textures.minecraft.net/texture/ae7215c45d97d7bc55d9dfa58fcc73f4af74e4b3f5a15b4419127424c4268e'
  393. name: '&c&lPet wyciszony'
  394. unbreakable: false
  395. lore:
  396. - '&7Kliknij by odciszyc peta.'
  397. ordinary-costume:
  398. enabled: true
  399. position: 19
  400. page: 'WARDROBE'
  401. id: 397
  402. damage: 3
  403. skin: 'textures.minecraft.net/texture/c95d37993e594082678472bf9d86823413c250d4332a2c7d8c52de4976b362'
  404. name: '&e&lKostiumy blokow'
  405. unbreakable: false
  406. lore:
  407. - 'none'
  408. color-costume:
  409. enabled: true
  410. position: 20
  411. page: 'WARDROBE'
  412. id: 397
  413. damage: 3
  414. skin: 'textures.minecraft.net/texture/f1af46febd45c0f4d81e8fa1b66b275d89e272b2ad55c978553a99c733e1ff'
  415. name: '&a&lKostiumy kolorowych blokow'
  416. unbreakable: false
  417. lore:
  418. - 'none'
  419. rare-costume:
  420. enabled: true
  421. position: 21
  422. page: 'WARDROBE'
  423. id: 397
  424. damage: 3
  425. skin: 'textures.minecraft.net/texture/a0c2549a893726988f3428bef799875ba871688ae64eb0cfdc43f7d6e24c6c'
  426. name: '&d&lKostiumy glow graczy'
  427. unbreakable: false
  428. lore:
  429. - 'none'
  430. minecraft-heads-pet-costume:
  431. enabled: true
  432. position: 22
  433. page: 'WARDROBE'
  434. id: 397
  435. damage: 3
  436. skin: 'textures.minecraft.net/texture/fec052be76e39148a27f255ec537dff92018c79744202d60c51bc67d618ae36a'
  437. name: '&9&lKostiumy zwierzakow'
  438. script: 'binding collection minecraft-heads-com.pet petblocks.selection.petcostumes'
  439. unbreakable: false
  440. lore:
  441. - 'none'
  442. minecraft-heads-vehicle-costume:
  443. enabled: true
  444. position: 23
  445. page: 'WARDROBE'
  446. id: 397
  447. damage: 3
  448. skin: 'textures.minecraft.net/texture/e8778c34fba29652cfac8d3f6fb35c49cbc2362b2b8f1378d83b30f463b181'
  449. name: '&2&lKostiumy pojazdow'
  450. script: 'binding collection minecraft-heads-com.vehicle petblocks.selection.vehiclecostumes'
  451. unbreakable: false
  452. lore:
  453. - 'none'
  454. minecraft-heads-puppet-costume:
  455. enabled: true
  456. position: 24
  457. page: 'WARDROBE'
  458. id: 397
  459. damage: 3
  460. skin: 'textures.minecraft.net/texture/3835da2685f7ad3f1919a018976ad56826691e26758a3a55a1918f7f17ad938'
  461. name: '&b&lKostiumy pluszowe'
  462. script: 'binding collection minecraft-heads-com.puppet petblocks.selection.puppetcostumes'
  463. unbreakable: false
  464. lore:
  465. - 'none'
  466. head-database-costume:
  467. enabled: true
  468. position: 25
  469. page: 'WARDROBE'
  470. id: 397
  471. damage: 3
  472. skin: 'textures.minecraft.net/texture/3bb612eb495ede2c5ca5178d2d1ecf1ca5a255d25dfc3c254bc47f6848791d8'
  473. name: '&c&lWlasny wyglad'
  474. unbreakable: false
  475. lore:
  476. - '&7Zmien wyglad petowi uzywajac zrodel zewnetrznych.'
  477. call-pet:
  478. enabled: true
  479. position: 38
  480. page: 'MAIN'
  481. id: 420
  482. damage: 0
  483. skin: 'none'
  484. name: '&2&lZawolaj'
  485. unbreakable: false
  486. lore:
  487. - '&7Teleportuje peta do Ciebie.'
  488. particle-pet:
  489. enabled: true
  490. position: 35
  491. page: 'MAIN'
  492. id: 331
  493. damage: 0
  494. skin: 'none'
  495. name: '&6&lEfekty'
  496. unbreakable: false
  497. lore:
  498. - '&7Naloz efekty wizualne na peta.'
  499. cannon-pet:
  500. enabled: true
  501. position: 11
  502. page: 'MAIN'
  503. id: 397
  504. damage: 3
  505. skin: 'textures.minecraft.net/texture/996754d330435345aae3a9f063cfca42afb28b7c5c4bb9f294ed2527d961'
  506. name: '&2&lWyrzutnia'
  507. unbreakable: false
  508. lore:
  509. - '&7Wystrzel peta jak pocisk.'
  510. skullnaming-pet:
  511. enabled: true
  512. position: 37
  513. page: 'WARDROBE'
  514. id: 397
  515. damage: 3
  516. skin: 'none'
  517. name: '&2&lCustom costume'
  518. script: 'executing action customskin petblocks.action.customskin'
  519. unbreakable: false
  520. lore:
  521. - '&7Use the skin of another player as costume.'
  522. naming-pet:
  523. enabled: true
  524. position: 27
  525. unbreakable: false
  526. id: 421
  527. damage: 0
  528. skin: 'none'
  529. name: '&6&lRename'
  530. script: 'executing action rename petblocks.action.rename'
  531. page: 'MAIN'
  532. lore:
  533. - '&7Change the name of your pet.'
  534. hat-pet:
  535. enabled: true
  536. position: 15
  537. page: 'MAIN'
  538. id: 397
  539. damage: 3
  540. skin: 'textures.minecraft.net/texture/9b5f247a7f5b37bbfa488ab4efaddcbad2e526e94fc542b1fe2f7cfeb6e'
  541. name: '&2&lHat'
  542. unbreakable: false
  543. lore:
  544. - '&7Wear your pet like a hat.'
  545. riding-pet:
  546. enabled: true
  547. position: 42
  548. page: 'MAIN'
  549. id: 329
  550. damage: 0
  551. skin: 'none'
  552. name: '&2&lRide'
  553. unbreakable: false
  554. lore:
  555. - '&7Start to ride your pet.'
  556. #--- DO NOT COPY ITEMS
  557.  
  558. ############################
  559.  
  560. # Engines-settings
  561.  
  562. # Settings for the petblock-engines-category.
  563. # You can find all sound names at the bottom of this file.
  564. # [Warning! Sound names have changed between 1.8 and 1.9, select the right one. All default sounds get automatically translated to 1.9]
  565. # You can add new engines by yourself!
  566.  
  567. # gui id: item id in the GUI
  568. # gui damage: item damage in the the GUI
  569. # gui skin: item skin in the GUI (Name of the player or the skin URL)
  570. # gui name: item name in the GUI
  571. # gui unbreakable: item unbreakable tag in the GUI
  572. # gui lore: item lore in the GUI (Multiple lines support)
  573.  
  574. # behaviour entity types: RABBIT (HOPPING), ZOMBIE (WALKING)
  575.  
  576. ############################
  577.  
  578. engines:
  579. 1:
  580. gui:
  581. id: 397
  582. damage: 3
  583. skin: 'textures.minecraft.net/texture/621668ef7cb79dd9c22ce3d1f3f4cb6e2559893b6df4a469514e667c16aa4'
  584. name: '&d&lPig'
  585. unbreakable: false
  586. lore:
  587. - '&7Permission: <permission>'
  588. behaviour:
  589. entity: 'RABBIT'
  590. riding: 'RUNNING'
  591. sound:
  592. ambient:
  593. name: 'PIG_IDLE'
  594. volume: 1.0
  595. pitch: 1.0
  596. walking:
  597. name: 'PIG_WALK'
  598. volume: 1.0
  599. pitch: 1.0
  600. 2:
  601. gui:
  602. id: 397
  603. damage: 3
  604. skin: 'textures.minecraft.net/texture/1638469a599ceef7207537603248a9ab11ff591fd378bea4735b346a7fae893'
  605. name: '&f&lChicken'
  606. unbreakable: false
  607. lore:
  608. - '&7Permission: <permission>'
  609. behaviour:
  610. entity: 'RABBIT'
  611. riding: 'RUNNING'
  612. sound:
  613. ambient:
  614. name: 'CHICKEN_IDLE'
  615. volume: 1.0
  616. pitch: 1.0
  617. walking:
  618. name: 'CHICKEN_WALK'
  619. volume: 1.0
  620. pitch: 1.0
  621. 3:
  622. gui:
  623. id: 397
  624. damage: 3
  625. skin: 'textures.minecraft.net/texture/e95cbb4f75ea87617f2f713c6d49dac3209ba1bd4b9369654b1459ea15317'
  626. name: '&6&lDog'
  627. unbreakable: false
  628. lore:
  629. - '&7Permission: <permission>'
  630. behaviour:
  631. entity: 'RABBIT'
  632. riding: 'RUNNING'
  633. sound:
  634. ambient:
  635. name: 'WOLF_GROWL'
  636. volume: 1.0
  637. pitch: 1.0
  638. walking:
  639. name: 'WOLF_WALK'
  640. volume: 1.0
  641. pitch: 1.0
  642. 4:
  643. gui:
  644. id: 397
  645. damage: 3
  646. skin: 'textures.minecraft.net/texture/5657cd5c2989ff97570fec4ddcdc6926a68a3393250c1be1f0b114a1db1'
  647. name: '&e&lCat'
  648. unbreakable: false
  649. lore:
  650. - '&7Permission: <permission>'
  651. behaviour:
  652. entity: 'RABBIT'
  653. riding: 'RUNNING'
  654. sound:
  655. ambient:
  656. name: 'CAT_MEOW'
  657. volume: 1.0
  658. pitch: 1.0
  659. walking:
  660. name: 'WOLF_WALK'
  661. volume: 1.0
  662. pitch: 1.0
  663. 5:
  664. gui:
  665. id: 397
  666. damage: 3
  667. skin: 'textures.minecraft.net/texture/5d6c6eda942f7f5f71c3161c7306f4aed307d82895f9d2b07ab4525718edc5'
  668. name: '&2&lCow'
  669. unbreakable: false
  670. lore:
  671. - '&7Permission: <permission>'
  672. behaviour:
  673. entity: 'RABBIT'
  674. riding: 'RUNNING'
  675. sound:
  676. ambient:
  677. name: 'COW_IDLE'
  678. volume: 1.0
  679. pitch: 1.0
  680. walking:
  681. name: 'COW_WALK'
  682. volume: 1.0
  683. pitch: 1.0
  684. 6:
  685. gui:
  686. id: 397
  687. damage: 3
  688. skin: 'textures.minecraft.net/texture/f31f9ccc6b3e32ecf13b8a11ac29cd33d18c95fc73db8a66c5d657ccb8be70'
  689. name: '&7&lSheep'
  690. unbreakable: false
  691. lore:
  692. - '&7Permission: <permission>'
  693. behaviour:
  694. entity: 'RABBIT'
  695. riding: 'RUNNING'
  696. sound:
  697. ambient:
  698. name: 'SHEEP_IDLE'
  699. volume: 1.0
  700. pitch: 1.0
  701. walking:
  702. name: 'SHEEP_WALK'
  703. volume: 1.0
  704. pitch: 1.0
  705. 7:
  706. gui:
  707. id: 397
  708. damage: 3
  709. skin: 'textures.minecraft.net/texture/61902898308730c4747299cb5a5da9c25838b1d059fe46fc36896fee662729'
  710. name: '&6&lHorse'
  711. unbreakable: false
  712. lore:
  713. - '&7Permission: <permission>'
  714. behaviour:
  715. entity: 'RABBIT'
  716. riding: 'RUNNING'
  717. sound:
  718. ambient:
  719. name: 'HORSE_IDLE'
  720. volume: 1.0
  721. pitch: 1.0
  722. walking:
  723. name: 'HORSE_GALLOP'
  724. volume: 1.0
  725. pitch: 1.0
  726. 8:
  727. gui:
  728. id: 397
  729. damage: 3
  730. skin: 'textures.minecraft.net/texture/f2542c19cbcd964274244af6bed1ac8560b3f36fd3b3268061f8a614a9b59e35'
  731. name: '&c&lBird'
  732. unbreakable: false
  733. lore:
  734. - '&7Permission: <permission>'
  735. behaviour:
  736. entity: 'RABBIT'
  737. riding: 'FLYING'
  738. sound:
  739. ambient:
  740. name: 'BAT_IDLE'
  741. volume: 1.0
  742. pitch: 0.0
  743. walking:
  744. name: 'CHICKEN_WALK'
  745. volume: 0.3
  746. pitch: 1.0
  747. 9:
  748. gui:
  749. id: 397
  750. damage: 3
  751. skin: 'textures.minecraft.net/texture/4cf1b3b3f539d2f63c172e94cacfaa391e8b385cdd633f3b991c74e44b28'
  752. name: '&7&lBat'
  753. unbreakable: false
  754. lore:
  755. - '&7Permission: <permission>'
  756. behaviour:
  757. entity: 'RABBIT'
  758. riding: 'FLYING'
  759. sound:
  760. ambient:
  761. name: 'BAT_IDLE'
  762. volume: 1.0
  763. pitch: 1.0
  764. walking:
  765. name: 'BAT_LOOP'
  766. volume: 1.0
  767. pitch: 1.0
  768. 10:
  769. gui:
  770. id: 397
  771. damage: 3
  772. skin: 'textures.minecraft.net/texture/56fc854bb84cf4b7697297973e02b79bc10698460b51a639c60e5e417734e11'
  773. name: '&2&lZombie'
  774. unbreakable: false
  775. lore:
  776. - '&7Permission: <permission>'
  777. behaviour:
  778. entity: 'RABBIT'
  779. riding: 'RUNNING'
  780. sound:
  781. ambient:
  782. name: 'ZOMBIE_IDLE'
  783. volume: 1.0
  784. pitch: 1.0
  785. walking:
  786. name: 'ZOMBIE_WALK'
  787. volume: 1.0
  788. pitch: 1.0
  789. 11:
  790. gui:
  791. id: 397
  792. damage: 3
  793. skin: 'textures.minecraft.net/texture/2e5be6a3c0159d2c1f3b1e4e1d8384b6f7ebac993d58b10b9f8989c78a232'
  794. name: '&7&lSkeleton'
  795. unbreakable: false
  796. lore:
  797. - '&7Permission: <permission>'
  798. behaviour:
  799. entity: 'RABBIT'
  800. riding: 'RUNNING'
  801. sound:
  802. ambient:
  803. name: 'SKELETON_IDLE'
  804. volume: 1.0
  805. pitch: 1.0
  806. walking:
  807. name: 'SKELETON_WALK'
  808. volume: 1.0
  809. pitch: 1.0
  810. 11:
  811. gui:
  812. id: 397
  813. damage: 3
  814. skin: 'textures.minecraft.net/texture/295ef836389af993158aba27ff37b6567185f7a721ca90fdfeb937a7cb5747'
  815. name: '&a&lCreeper'
  816. unbreakable: false
  817. lore:
  818. - '&7Permission: <permission>'
  819. behaviour:
  820. entity: 'RABBIT'
  821. riding: 'RUNNING'
  822. sound:
  823. ambient:
  824. name: 'none'
  825. volume: 1.0
  826. pitch: 1.0
  827. walking:
  828. name: 'none'
  829. volume: 1.0
  830. pitch: 1.0
  831. 12:
  832. gui:
  833. id: 397
  834. damage: 3
  835. skin: 'textures.minecraft.net/texture/cd541541daaff50896cd258bdbdd4cf80c3ba816735726078bfe393927e57f1'
  836. name: '&8&lSpider'
  837. unbreakable: false
  838. lore:
  839. - '&7Permission: <permission>'
  840. behaviour:
  841. entity: 'RABBIT'
  842. riding: 'RUNNING'
  843. sound:
  844. ambient:
  845. name: 'SPIDER_IDLE'
  846. volume: 1.0
  847. pitch: 1.0
  848. walking:
  849. name: 'SPIDER_WALK'
  850. volume: 1.0
  851. pitch: 1.0
  852. 13:
  853. gui:
  854. id: 397
  855. damage: 3
  856. skin: 'textures.minecraft.net/texture/7a59bb0a7a32965b3d90d8eafa899d1835f424509eadd4e6b709ada50b9cf'
  857. name: '&5&lEnderman'
  858. unbreakable: false
  859. lore:
  860. - '&7Permission: <permission>'
  861. behaviour:
  862. entity: 'RABBIT'
  863. riding: 'RUNNING'
  864. sound:
  865. ambient:
  866. name: 'ENDERMAN_IDLE'
  867. volume: 1.0
  868. pitch: 1.0
  869. walking:
  870. name: 'none'
  871. volume: 1.0
  872. pitch: 1.0
  873. 14:
  874. gui:
  875. id: 397
  876. damage: 3
  877. skin: 'textures.minecraft.net/texture/16ad20fc2d579be250d3db659c832da2b478a73a698b7ea10d18c9162e4d9b5'
  878. name: '&a&lSlime'
  879. unbreakable: false
  880. lore:
  881. - '&7Permission: <permission>'
  882. behaviour:
  883. entity: 'RABBIT'
  884. riding: 'RUNNING'
  885. sound:
  886. ambient:
  887. name: 'none'
  888. volume: 1.0
  889. pitch: 1.0
  890. walking:
  891. name: 'SLIME_WALK'
  892. volume: 1.0
  893. pitch: 1.0
  894. 15:
  895. gui:
  896. id: 397
  897. damage: 3
  898. skin: 'textures.minecraft.net/texture/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429'
  899. name: '&4&lLavaslime'
  900. unbreakable: false
  901. lore:
  902. - '&7Permission: <permission>'
  903. behaviour:
  904. entity: 'RABBIT'
  905. riding: 'RUNNING'
  906. sound:
  907. ambient:
  908. name: 'none'
  909. volume: 1.0
  910. pitch: 1.0
  911. walking:
  912. name: 'MAGMACUBE_WALK'
  913. volume: 1.0
  914. pitch: 1.0
  915. 16:
  916. gui:
  917. id: 397
  918. damage: 3
  919. skin: 'textures.minecraft.net/texture/74e9c6e98582ffd8ff8feb3322cd1849c43fb16b158abb11ca7b42eda7743eb'
  920. name: '&d&lPigzombie'
  921. unbreakable: false
  922. lore:
  923. - '&7Permission: <permission>'
  924. behaviour:
  925. entity: 'RABBIT'
  926. riding: 'RUNNING'
  927. sound:
  928. ambient:
  929. name: 'PIG_IDLE'
  930. volume: 1.0
  931. pitch: 1.0
  932. walking:
  933. name: 'PIG_WALK'
  934. volume: 1.0
  935. pitch: 1.0
  936. 17:
  937. gui:
  938. id: 397
  939. damage: 3
  940. skin: 'textures.minecraft.net/texture/c52264ac4e5621668c43e87aed7918ed6b883abc5018769c9536d27b77f'
  941. name: '&5&lDragon'
  942. unbreakable: false
  943. lore:
  944. - '&7Permission: <permission>'
  945. behaviour:
  946. entity: 'RABBIT'
  947. riding: 'FLYING'
  948. sound:
  949. ambient:
  950. name: 'ENDERDRAGON_GROWL'
  951. volume: 1.0
  952. pitch: 1.0
  953. walking:
  954. name: 'ENDERDRAGON_WINGS'
  955. volume: 1.0
  956. pitch: 1.0
  957. 18:
  958. gui:
  959. id: 397
  960. damage: 3
  961. skin: 'textures.minecraft.net/texture/456eec1c2169c8c60a7ae436abcd2dc5417d56f8adef84f11343dc1188fe138'
  962. name: '&3&lHuman'
  963. unbreakable: false
  964. lore:
  965. - '&7Permission: <permission>'
  966. behaviour:
  967. entity: 'RABBIT'
  968. riding: 'RUNNING'
  969. sound:
  970. ambient:
  971. name: 'none'
  972. volume: 1.0
  973. pitch: 1.0
  974. walking:
  975. name: 'none'
  976. volume: 1.0
  977. pitch: 1.0
  978. 19:
  979. gui:
  980. id: 397
  981. damage: 3
  982. skin: 'textures.minecraft.net/texture/822d8e751c8f2fd4c8942c44bdb2f5ca4d8ae8e575ed3eb34c18a86e93b'
  983. name: '&a&lVillager'
  984. unbreakable: false
  985. lore:
  986. - '&7Permission: <permission>'
  987. behaviour:
  988. entity: 'RABBIT'
  989. riding: 'RUNNING'
  990. sound:
  991. ambient:
  992. name: 'VILLAGER_IDLE'
  993. volume: 1.0
  994. pitch: 1.0
  995. walking:
  996. name: 'none'
  997. volume: 1.0
  998. pitch: 1.0
  999. 20:
  1000. gui:
  1001. id: 397
  1002. damage: 3
  1003. skin: 'textures.minecraft.net/texture/89091d79ea0f59ef7ef94d7bba6e5f17f2f7d4572c44f90f76c4819a714'
  1004. name: '&8&lIrongolem'
  1005. unbreakable: false
  1006. lore:
  1007. - '&7Permission: <permission>'
  1008. behaviour:
  1009. entity: 'RABBIT'
  1010. riding: 'RUNNING'
  1011. sound:
  1012. ambient:
  1013. name: 'none'
  1014. volume: 1.0
  1015. pitch: 1.0
  1016. walking:
  1017. name: 'IRONGOLEM_WALK'
  1018. volume: 1.0
  1019. pitch: 1.0
  1020. 21:
  1021. gui:
  1022. id: 397
  1023. damage: 3
  1024. skin: 'textures.minecraft.net/texture/ce663a1949db253da3a6f2a69e35da9a524ee3d958a3807ce2bdabcd6f7f5'
  1025. name: '&8&lSilverfish'
  1026. unbreakable: false
  1027. lore:
  1028. - '&7Permission: <permission>'
  1029. behaviour:
  1030. entity: 'RABBIT'
  1031. riding: 'RUNNING'
  1032. sound:
  1033. ambient:
  1034. name: 'SILVERFISH_IDLE'
  1035. volume: 1.0
  1036. pitch: 1.0
  1037. walking:
  1038. name: 'SILVERFISH_WALK'
  1039. volume: 1.0
  1040. pitch: 1.0
  1041. 22:
  1042. gui:
  1043. id: 397
  1044. damage: 3
  1045. skin: 'textures.minecraft.net/texture/8b6a72138d69fbbd2fea3fa251cabd87152e4f1c97e5f986bf685571db3cc0'
  1046. name: '&f&lGhast'
  1047. unbreakable: false
  1048. lore:
  1049. - '&7Permission: <permission>'
  1050. behaviour:
  1051. entity: 'RABBIT'
  1052. riding: 'FLYING'
  1053. sound:
  1054. ambient:
  1055. name: 'GHAST_SCREAM'
  1056. volume: 1.0
  1057. pitch: 1.0
  1058. walking:
  1059. name: 'none'
  1060. volume: 1.0
  1061. pitch: 1.0
  1062. 23:
  1063. gui:
  1064. id: 397
  1065. damage: 3
  1066. skin: 'textures.minecraft.net/texture/b78ef2e4cf2c41a2d14bfde9caff10219f5b1bf5b35a49eb51c6467882cb5f0'
  1067. name: '&e&lBlaze'
  1068. unbreakable: false
  1069. lore:
  1070. - '&7Permission: <permission>'
  1071. behaviour:
  1072. entity: 'RABBIT'
  1073. riding: 'FLYING'
  1074. sound:
  1075. ambient:
  1076. name: 'BLAZE_BREATH'
  1077. volume: 1.0
  1078. pitch: 1.0
  1079. walking:
  1080. name: 'none'
  1081. volume: 1.0
  1082. pitch: 1.0
  1083. 24:
  1084. gui:
  1085. id: 397
  1086. damage: 3
  1087. skin: 'textures.minecraft.net/texture/233b41fa79cd53a230e2db942863843183a70404533bbc01fab744769bcb'
  1088. name: '&8&lWither'
  1089. unbreakable: false
  1090. lore:
  1091. - '&7Permission: <permission>'
  1092. behaviour:
  1093. entity: 'RABBIT'
  1094. riding: 'FLYING'
  1095. sound:
  1096. ambient:
  1097. name: 'WITHER_IDLE'
  1098. volume: 1.0
  1099. pitch: 1.0
  1100. walking:
  1101. name: 'none'
  1102. volume: 1.0
  1103. pitch: 1.0
  1104. 25:
  1105. gui:
  1106. id: 397
  1107. damage: 3
  1108. skin: 'textures.minecraft.net/texture/b1d3534d21fe8499262de87affbeac4d25ffde35c8bdca069e61e1787ff2f'
  1109. name: '&5&lShulker'
  1110. unbreakable: false
  1111. lore:
  1112. - '&7Permission: <permission>'
  1113. behaviour:
  1114. entity: 'RABBIT'
  1115. riding: 'FLYING'
  1116. sound:
  1117. ambient:
  1118. name: 'SHULKER_IDLE'
  1119. volume: 1.0
  1120. pitch: 1.0
  1121. walking:
  1122. name: 'none'
  1123. volume: 1.0
  1124. pitch: 1.0
  1125. 26:
  1126. gui:
  1127. id: 397
  1128. damage: 3
  1129. skin: 'textures.minecraft.net/texture/442123ac15effa1ba46462472871b88f1b09c1db467621376e2f71656d3fbc'
  1130. name: '&f&lPolar Bear'
  1131. unbreakable: false
  1132. lore:
  1133. - '&7Permission: <permission>'
  1134. behaviour:
  1135. entity: 'RABBIT'
  1136. riding: 'RUNNING'
  1137. sound:
  1138. ambient:
  1139. name: 'ENTITY_POLAR_BEAR_AMBIENT'
  1140. volume: 1.0
  1141. pitch: 1.0
  1142. walking:
  1143. name: 'ENTITY_POLAR_BEAR_STEP'
  1144. volume: 1.0
  1145. pitch: 1.0
  1146. 27:
  1147. gui:
  1148. id: 397
  1149. damage: 3
  1150. skin: 'textures.minecraft.net/texture/818cd457fbaf327fa39f10b5b36166fd018264036865164c02d9e5ff53f45'
  1151. name: '&6&lLlama'
  1152. unbreakable: false
  1153. lore:
  1154. - '&7Permission: <permission>'
  1155. behaviour:
  1156. entity: 'RABBIT'
  1157. riding: 'RUNNING'
  1158. sound:
  1159. ambient:
  1160. name: 'ENTITY_LLAMA_AMBIENT'
  1161. volume: 1.0
  1162. pitch: 1.0
  1163. walking:
  1164. name: 'ENTITY_LLAMA_STEP'
  1165. volume: 1.0
  1166. pitch: 1.0
  1167. 28:
  1168. gui:
  1169. id: 397
  1170. damage: 3
  1171. skin: 'textures.minecraft.net/texture/c2ec5a516617ff1573cd2f9d5f3969f56d5575c4ff4efefabd2a18dc7ab98cd'
  1172. name: '&8&lVex'
  1173. unbreakable: false
  1174. lore:
  1175. - '&7Permission: <permission>'
  1176. behaviour:
  1177. entity: 'RABBIT'
  1178. riding: 'FLYING'
  1179. sound:
  1180. ambient:
  1181. name: 'ENTITY_VEX_AMBIENT'
  1182. volume: 1.0
  1183. pitch: 1.0
  1184. walking:
  1185. name: 'none'
  1186. volume: 1.0
  1187. pitch: 1.0
  1188. 29:
  1189. gui:
  1190. id: 397
  1191. damage: 3
  1192. skin: 'textures.minecraft.net/texture/707dab2cbebea539b64d5ad246f9ccc1fcda7aa94b88e59fc2829852f46071'
  1193. name: '&c&lParrot'
  1194. unbreakable: false
  1195. lore:
  1196. - '&7Permission: <permission>'
  1197. behaviour:
  1198. entity: 'RABBIT'
  1199. riding: 'FLYING'
  1200. sound:
  1201. ambient:
  1202. name: 'ENTITY_PARROT_AMBIENT'
  1203. volume: 1.0
  1204. pitch: 1.0
  1205. walking:
  1206. name: 'ENTITY_PARROT_FLY'
  1207. volume: 1.0
  1208. pitch: 1.0
  1209. #--- Copy one of the items increment the number and add it above this line
  1210. ############################
  1211.  
  1212. # Wardrobe-settings
  1213.  
  1214. # Settings for the petblock-wardrobe-category.
  1215. # You can add new costumes by yourself!
  1216.  
  1217. # id: item id in the GUI
  1218. # damage: item damage in the the GUI
  1219. # skin: item skin in the GUI (Name of the player or the skin URL)
  1220. # name: item name in the GUI
  1221. # unbreakable: item unbreakable tag in the GUI
  1222. # lore: item lore in the GUI (Multiple lines support)
  1223.  
  1224. ############################
  1225.  
  1226. wardrobe:
  1227. ordinary:
  1228. 1:
  1229. id: 1
  1230. damage: 0
  1231. skin: 'none'
  1232. name: 'none'
  1233. unbreakable: false
  1234. lore:
  1235. - 'none'
  1236. 2:
  1237. id: 1
  1238. damage: 1
  1239. skin: 'none'
  1240. name: 'none'
  1241. unbreakable: false
  1242. lore:
  1243. - 'none'
  1244. 3:
  1245. id: 1
  1246. damage: 2
  1247. skin: 'none'
  1248. name: 'none'
  1249. unbreakable: false
  1250. lore:
  1251. - 'none'
  1252. 4:
  1253. id: 1
  1254. damage: 3
  1255. skin: 'none'
  1256. name: 'none'
  1257. unbreakable: false
  1258. lore:
  1259. - 'none'
  1260. 5:
  1261. id: 1
  1262. damage: 4
  1263. skin: 'none'
  1264. name: 'none'
  1265. unbreakable: false
  1266. lore:
  1267. - 'none'
  1268. 6:
  1269. id: 1
  1270. damage: 5
  1271. skin: 'none'
  1272. name: 'none'
  1273. unbreakable: false
  1274. lore:
  1275. - 'none'
  1276. 7:
  1277. id: 1
  1278. damage: 6
  1279. skin: 'none'
  1280. name: 'none'
  1281. unbreakable: false
  1282. lore:
  1283. - 'none'
  1284. 8:
  1285. id: 2
  1286. damage: 0
  1287. skin: 'none'
  1288. name: 'none'
  1289. unbreakable: false
  1290. lore:
  1291. - 'none'
  1292. 9:
  1293. id: 3
  1294. damage: 0
  1295. skin: 'none'
  1296. name: 'none'
  1297. unbreakable: false
  1298. lore:
  1299. - 'none'
  1300. 10:
  1301. id: 3
  1302. damage: 1
  1303. skin: 'none'
  1304. name: 'none'
  1305. unbreakable: false
  1306. lore:
  1307. - 'none'
  1308. 11:
  1309. id: 3
  1310. damage: 2
  1311. skin: 'none'
  1312. name: 'none'
  1313. unbreakable: false
  1314. lore:
  1315. - 'none'
  1316. 12:
  1317. id: 4
  1318. damage: 0
  1319. skin: 'none'
  1320. name: 'none'
  1321. unbreakable: false
  1322. lore:
  1323. - 'none'
  1324. 13:
  1325. id: 5
  1326. damage: 0
  1327. skin: 'none'
  1328. name: 'none'
  1329. unbreakable: false
  1330. lore:
  1331. - 'none'
  1332. 14:
  1333. id: 5
  1334. damage: 1
  1335. skin: 'none'
  1336. name: 'none'
  1337. unbreakable: false
  1338. lore:
  1339. - 'none'
  1340. 15:
  1341. id: 5
  1342. damage: 2
  1343. skin: 'none'
  1344. name: 'none'
  1345. unbreakable: false
  1346. lore:
  1347. - 'none'
  1348. 16:
  1349. id: 5
  1350. damage: 3
  1351. skin: 'none'
  1352. name: 'none'
  1353. unbreakable: false
  1354. lore:
  1355. - 'none'
  1356. 17:
  1357. id: 5
  1358. damage: 4
  1359. skin: 'none'
  1360. name: 'none'
  1361. unbreakable: false
  1362. lore:
  1363. - 'none'
  1364. 18:
  1365. id: 5
  1366. damage: 5
  1367. skin: 'none'
  1368. name: 'none'
  1369. unbreakable: false
  1370. lore:
  1371. - 'none'
  1372. 19:
  1373. id: 7
  1374. damage: 0
  1375. skin: 'none'
  1376. name: 'none'
  1377. unbreakable: false
  1378. lore:
  1379. - 'none'
  1380. 20:
  1381. id: 12
  1382. damage: 0
  1383. skin: 'none'
  1384. name: 'none'
  1385. unbreakable: false
  1386. lore:
  1387. - 'none'
  1388. 21:
  1389. id: 12
  1390. damage: 1
  1391. skin: 'none'
  1392. name: 'none'
  1393. unbreakable: false
  1394. lore:
  1395. - 'none'
  1396. 22:
  1397. id: 13
  1398. damage: 0
  1399. skin: 'none'
  1400. name: 'none'
  1401. unbreakable: false
  1402. lore:
  1403. - 'none'
  1404. 23:
  1405. id: 14
  1406. damage: 0
  1407. skin: 'none'
  1408. name: 'none'
  1409. unbreakable: false
  1410. lore:
  1411. - 'none'
  1412. 24:
  1413. id: 15
  1414. damage: 0
  1415. skin: 'none'
  1416. name: 'none'
  1417. unbreakable: false
  1418. lore:
  1419. - 'none'
  1420. 25:
  1421. id: 16
  1422. damage: 0
  1423. skin: 'none'
  1424. name: 'none'
  1425. unbreakable: false
  1426. lore:
  1427. - 'none'
  1428. 26:
  1429. id: 17
  1430. damage: 0
  1431. skin: 'none'
  1432. name: 'none'
  1433. unbreakable: false
  1434. lore:
  1435. - 'none'
  1436. 27:
  1437. id: 17
  1438. damage: 1
  1439. skin: 'none'
  1440. name: 'none'
  1441. unbreakable: false
  1442. lore:
  1443. - 'none'
  1444. 28:
  1445. id: 17
  1446. damage: 2
  1447. skin: 'none'
  1448. name: 'none'
  1449. unbreakable: false
  1450. lore:
  1451. - 'none'
  1452. 29:
  1453. id: 17
  1454. damage: 2
  1455. skin: 'none'
  1456. name: 'none'
  1457. unbreakable: false
  1458. lore:
  1459. - 'none'
  1460. 30:
  1461. id: 17
  1462. damage: 3
  1463. skin: 'none'
  1464. name: 'none'
  1465. unbreakable: false
  1466. lore:
  1467. - 'none'
  1468. 31:
  1469. id: 18
  1470. damage: 0
  1471. skin: 'none'
  1472. name: 'none'
  1473. unbreakable: false
  1474. lore:
  1475. - 'none'
  1476. 32:
  1477. id: 18
  1478. damage: 1
  1479. skin: 'none'
  1480. name: 'none'
  1481. unbreakable: false
  1482. lore:
  1483. - 'none'
  1484. 33:
  1485. id: 18
  1486. damage: 2
  1487. skin: 'none'
  1488. name: 'none'
  1489. unbreakable: false
  1490. lore:
  1491. - 'none'
  1492. 34:
  1493. id: 18
  1494. damage: 3
  1495. skin: 'none'
  1496. name: 'none'
  1497. unbreakable: false
  1498. lore:
  1499. - 'none'
  1500. 35:
  1501. id: 19
  1502. damage: 0
  1503. skin: 'none'
  1504. name: 'none'
  1505. unbreakable: false
  1506. lore:
  1507. - 'none'
  1508. 36:
  1509. id: 19
  1510. damage: 1
  1511. skin: 'none'
  1512. name: 'none'
  1513. unbreakable: false
  1514. lore:
  1515. - 'none'
  1516. 37:
  1517. id: 20
  1518. damage: 0
  1519. skin: 'none'
  1520. name: 'none'
  1521. unbreakable: false
  1522. lore:
  1523. - 'none'
  1524. 38:
  1525. id: 21
  1526. damage: 0
  1527. skin: 'none'
  1528. name: 'none'
  1529. unbreakable: false
  1530. lore:
  1531. - 'none'
  1532. 39:
  1533. id: 22
  1534. damage: 0
  1535. skin: 'none'
  1536. name: 'none'
  1537. unbreakable: false
  1538. lore:
  1539. - 'none'
  1540. 40:
  1541. id: 23
  1542. damage: 0
  1543. skin: 'none'
  1544. name: 'none'
  1545. unbreakable: false
  1546. lore:
  1547. - 'none'
  1548. 41:
  1549. id: 24
  1550. damage: 0
  1551. skin: 'none'
  1552. name: 'none'
  1553. unbreakable: false
  1554. lore:
  1555. - 'none'
  1556. 42:
  1557. id: 24
  1558. damage: 1
  1559. skin: 'none'
  1560. name: 'none'
  1561. unbreakable: false
  1562. lore:
  1563. - 'none'
  1564. 43:
  1565. id: 24
  1566. damage: 2
  1567. skin: 'none'
  1568. name: 'none'
  1569. unbreakable: false
  1570. lore:
  1571. - 'none'
  1572. 44:
  1573. id: 25
  1574. damage: 0
  1575. skin: 'none'
  1576. name: 'none'
  1577. unbreakable: false
  1578. lore:
  1579. - 'none'
  1580. 45:
  1581. id: 29
  1582. damage: 0
  1583. skin: 'none'
  1584. name: 'none'
  1585. unbreakable: false
  1586. lore:
  1587. - 'none'
  1588. 46:
  1589. id: 33
  1590. damage: 0
  1591. skin: 'none'
  1592. name: 'none'
  1593. unbreakable: false
  1594. lore:
  1595. - 'none'
  1596. 47:
  1597. id: 41
  1598. damage: 0
  1599. skin: 'none'
  1600. name: 'none'
  1601. unbreakable: false
  1602. lore:
  1603. - 'none'
  1604. 48:
  1605. id: 42
  1606. damage: 0
  1607. skin: 'none'
  1608. name: 'none'
  1609. unbreakable: false
  1610. lore:
  1611. - 'none'
  1612. 49:
  1613. id: 44
  1614. damage: 0
  1615. skin: 'none'
  1616. name: 'none'
  1617. unbreakable: false
  1618. lore:
  1619. - 'none'
  1620. 50:
  1621. id: 45
  1622. damage: 0
  1623. skin: 'none'
  1624. name: 'none'
  1625. unbreakable: false
  1626. lore:
  1627. - 'none'
  1628. 51:
  1629. id: 57
  1630. damage: 0
  1631. skin: 'none'
  1632. name: 'none'
  1633. unbreakable: false
  1634. lore:
  1635. - 'none'
  1636. 52:
  1637. id: 80
  1638. damage: 0
  1639. skin: 'none'
  1640. name: 'none'
  1641. unbreakable: false
  1642. lore:
  1643. - 'none'
  1644. 53:
  1645. id: 82
  1646. damage: 0
  1647. skin: 'none'
  1648. name: 'none'
  1649. unbreakable: false
  1650. lore:
  1651. - 'none'
  1652. 54:
  1653. id: 87
  1654. damage: 0
  1655. skin: 'none'
  1656. name: 'none'
  1657. unbreakable: false
  1658. lore:
  1659. - 'none'
  1660. 55:
  1661. id: 88
  1662. damage: 0
  1663. skin: 'none'
  1664. name: 'none'
  1665. unbreakable: false
  1666. lore:
  1667. - 'none'
  1668. color:
  1669. 1:
  1670. id: 35
  1671. damage: 12
  1672. skin: 'none'
  1673. name: 'none'
  1674. unbreakable: false
  1675. lore:
  1676. - 'none'
  1677. 2:
  1678. id: 35
  1679. damage: 1
  1680. skin: 'none'
  1681. name: 'none'
  1682. unbreakable: false
  1683. lore:
  1684. - 'none'
  1685. 3:
  1686. id: 35
  1687. damage: 2
  1688. skin: 'none'
  1689. name: 'none'
  1690. unbreakable: false
  1691. lore:
  1692. - 'none'
  1693. 4:
  1694. id: 35
  1695. damage: 3
  1696. skin: 'none'
  1697. name: 'none'
  1698. unbreakable: false
  1699. lore:
  1700. - 'none'
  1701. 5:
  1702. id: 35
  1703. damage: 4
  1704. skin: 'none'
  1705. name: 'none'
  1706. unbreakable: false
  1707. lore:
  1708. - 'none'
  1709. 6:
  1710. id: 35
  1711. damage: 5
  1712. skin: 'none'
  1713. name: 'none'
  1714. unbreakable: false
  1715. lore:
  1716. - 'none'
  1717. 7:
  1718. id: 35
  1719. damage: 6
  1720. skin: 'none'
  1721. name: 'none'
  1722. unbreakable: false
  1723. lore:
  1724. - 'none'
  1725. 8:
  1726. id: 35
  1727. damage: 7
  1728. skin: 'none'
  1729. name: 'none'
  1730. unbreakable: false
  1731. lore:
  1732. - 'none'
  1733. 9:
  1734. id: 35
  1735. damage: 8
  1736. skin: 'none'
  1737. name: 'none'
  1738. unbreakable: false
  1739. lore:
  1740. - 'none'
  1741. 10:
  1742. id: 35
  1743. damage: 9
  1744. skin: 'none'
  1745. name: 'none'
  1746. unbreakable: false
  1747. lore:
  1748. - 'none'
  1749. 11:
  1750. id: 35
  1751. damage: 10
  1752. skin: 'none'
  1753. name: 'none'
  1754. unbreakable: false
  1755. lore:
  1756. - 'none'
  1757. 12:
  1758. id: 35
  1759. damage: 11
  1760. skin: 'none'
  1761. name: 'none'
  1762. unbreakable: false
  1763. lore:
  1764. - 'none'
  1765. 13:
  1766. id: 35
  1767. damage: 12
  1768. skin: 'none'
  1769. name: 'none'
  1770. unbreakable: false
  1771. lore:
  1772. - 'none'
  1773. 14:
  1774. id: 35
  1775. damage: 13
  1776. skin: 'none'
  1777. name: 'none'
  1778. unbreakable: false
  1779. lore:
  1780. - 'none'
  1781. 15:
  1782. id: 35
  1783. damage: 14
  1784. skin: 'none'
  1785. name: 'none'
  1786. unbreakable: false
  1787. lore:
  1788. - 'none'
  1789. 16:
  1790. id: 35
  1791. damage: 15
  1792. skin: 'none'
  1793. name: 'none'
  1794. unbreakable: false
  1795. lore:
  1796. - 'none'
  1797. 17:
  1798. id: 95
  1799. damage: 0
  1800. skin: 'none'
  1801. name: 'none'
  1802. unbreakable: false
  1803. lore:
  1804. - 'none'
  1805. 18:
  1806. id: 95
  1807. damage: 1
  1808. skin: 'none'
  1809. name: 'none'
  1810. unbreakable: false
  1811. lore:
  1812. - 'none'
  1813. 19:
  1814. id: 95
  1815. damage: 2
  1816. skin: 'none'
  1817. name: 'none'
  1818. unbreakable: false
  1819. lore:
  1820. - 'none'
  1821. 20:
  1822. id: 95
  1823. damage: 3
  1824. skin: 'none'
  1825. name: 'none'
  1826. unbreakable: false
  1827. lore:
  1828. - 'none'
  1829. 21:
  1830. id: 95
  1831. damage: 4
  1832. skin: 'none'
  1833. name: 'none'
  1834. unbreakable: false
  1835. lore:
  1836. - 'none'
  1837. 22:
  1838. id: 95
  1839. damage: 5
  1840. skin: 'none'
  1841. name: 'none'
  1842. unbreakable: false
  1843. lore:
  1844. - 'none'
  1845. 23:
  1846. id: 95
  1847. damage: 6
  1848. skin: 'none'
  1849. name: 'none'
  1850. unbreakable: false
  1851. lore:
  1852. - 'none'
  1853. 24:
  1854. id: 95
  1855. damage: 7
  1856. skin: 'none'
  1857. name: 'none'
  1858. unbreakable: false
  1859. lore:
  1860. - 'none'
  1861. 25:
  1862. id: 95
  1863. damage: 8
  1864. skin: 'none'
  1865. name: 'none'
  1866. unbreakable: false
  1867. lore:
  1868. - 'none'
  1869. 26:
  1870. id: 95
  1871. damage: 9
  1872. skin: 'none'
  1873. name: 'none'
  1874. unbreakable: false
  1875. lore:
  1876. - 'none'
  1877. 27:
  1878. id: 95
  1879. damage: 10
  1880. skin: 'none'
  1881. name: 'none'
  1882. unbreakable: false
  1883. lore:
  1884. - 'none'
  1885. 28:
  1886. id: 95
  1887. damage: 11
  1888. skin: 'none'
  1889. name: 'none'
  1890. unbreakable: false
  1891. lore:
  1892. - 'none'
  1893. 29:
  1894. id: 95
  1895. damage: 12
  1896. skin: 'none'
  1897. name: 'none'
  1898. unbreakable: false
  1899. lore:
  1900. - 'none'
  1901. 30:
  1902. id: 95
  1903. damage: 13
  1904. skin: 'none'
  1905. name: 'none'
  1906. unbreakable: false
  1907. lore:
  1908. - 'none'
  1909. 31:
  1910. id: 95
  1911. damage: 14
  1912. skin: 'none'
  1913. name: 'none'
  1914. unbreakable: false
  1915. lore:
  1916. - 'none'
  1917. 32:
  1918. id: 95
  1919. damage: 15
  1920. skin: 'none'
  1921. name: 'none'
  1922. unbreakable: false
  1923. lore:
  1924. - 'none'
  1925. 33:
  1926. id: 159
  1927. damage: 0
  1928. skin: 'none'
  1929. name: 'none'
  1930. unbreakable: false
  1931. lore:
  1932. - 'none'
  1933. 34:
  1934. id: 159
  1935. damage: 1
  1936. skin: 'none'
  1937. name: 'none'
  1938. unbreakable: false
  1939. lore:
  1940. - 'none'
  1941. 35:
  1942. id: 159
  1943. damage: 2
  1944. skin: 'none'
  1945. name: 'none'
  1946. unbreakable: false
  1947. lore:
  1948. - 'none'
  1949. 36:
  1950. id: 159
  1951. damage: 3
  1952. skin: 'none'
  1953. name: 'none'
  1954. unbreakable: false
  1955. lore:
  1956. - 'none'
  1957. 37:
  1958. id: 159
  1959. damage: 4
  1960. skin: 'none'
  1961. name: 'none'
  1962. unbreakable: false
  1963. lore:
  1964. - 'none'
  1965. 38:
  1966. id: 159
  1967. damage: 5
  1968. skin: 'none'
  1969. name: 'none'
  1970. unbreakable: false
  1971. lore:
  1972. - 'none'
  1973. 39:
  1974. id: 159
  1975. damage: 6
  1976. skin: 'none'
  1977. name: 'none'
  1978. unbreakable: false
  1979. lore:
  1980. - 'none'
  1981. 40:
  1982. id: 159
  1983. damage: 7
  1984. skin: 'none'
  1985. name: 'none'
  1986. unbreakable: false
  1987. lore:
  1988. - 'none'
  1989. 41:
  1990. id: 159
  1991. damage: 8
  1992. skin: 'none'
  1993. name: 'none'
  1994. unbreakable: false
  1995. lore:
  1996. - 'none'
  1997. 42:
  1998. id: 159
  1999. damage: 9
  2000. skin: 'none'
  2001. name: 'none'
  2002. unbreakable: false
  2003. lore:
  2004. - 'none'
  2005. 43:
  2006. id: 159
  2007. damage: 10
  2008. skin: 'none'
  2009. name: 'none'
  2010. unbreakable: false
  2011. lore:
  2012. - 'none'
  2013. 44:
  2014. id: 159
  2015. damage: 11
  2016. skin: 'none'
  2017. name: 'none'
  2018. unbreakable: false
  2019. lore:
  2020. - 'none'
  2021. 45:
  2022. id: 159
  2023. damage: 12
  2024. skin: 'none'
  2025. name: 'none'
  2026. unbreakable: false
  2027. lore:
  2028. - 'none'
  2029. 46:
  2030. id: 159
  2031. damage: 13
  2032. skin: 'none'
  2033. name: 'none'
  2034. unbreakable: false
  2035. lore:
  2036. - 'none'
  2037. 47:
  2038. id: 159
  2039. damage: 14
  2040. skin: 'none'
  2041. name: 'none'
  2042. unbreakable: false
  2043. lore:
  2044. - 'none'
  2045. 48:
  2046. id: 159
  2047. damage: 15
  2048. skin: 'none'
  2049. name: 'none'
  2050. unbreakable: false
  2051. lore:
  2052. - 'none'
  2053. rare:
  2054. 1:
  2055. id: 397
  2056. damage: 3
  2057. skin: 'textures.minecraft.net/texture/621668ef7cb79dd9c22ce3d1f3f4cb6e2559893b6df4a469514e667c16aa4'
  2058. name: 'Pig'
  2059. unbreakable: false
  2060. lore:
  2061. - 'none'
  2062. 2:
  2063. id: 397
  2064. damage: 3
  2065. skin: 'textures.minecraft.net/texture/1638469a599ceef7207537603248a9ab11ff591fd378bea4735b346a7fae893'
  2066. name: 'Chicken'
  2067. unbreakable: false
  2068. lore:
  2069. - 'none'
  2070. 3:
  2071. id: 397
  2072. damage: 3
  2073. skin: 'textures.minecraft.net/texture/5657cd5c2989ff97570fec4ddcdc6926a68a3393250c1be1f0b114a1db1'
  2074. name: 'Cat'
  2075. unbreakable: false
  2076. lore:
  2077. - 'none'
  2078. 4:
  2079. id: 397
  2080. damage: 3
  2081. skin: 'textures.minecraft.net/texture/e95cbb4f75ea87617f2f713c6d49dac3209ba1bd4b9369654b1459ea15317'
  2082. name: 'Wolf'
  2083. unbreakable: false
  2084. lore:
  2085. - 'none'
  2086. 5:
  2087. id: 397
  2088. damage: 3
  2089. skin: 'textures.minecraft.net/texture/f2542c19cbcd964274244af6bed1ac8560b3f36fd3b3268061f8a614a9b59e35'
  2090. name: 'Bird'
  2091. unbreakable: false
  2092. lore:
  2093. - 'none'
  2094. 6:
  2095. id: 397
  2096. damage: 3
  2097. skin: 'textures.minecraft.net/texture/c52264ac4e5621668c43e87aed7918ed6b883abc5018769c9536d27b77f'
  2098. name: 'Dragon'
  2099. unbreakable: false
  2100. lore:
  2101. - 'none'
  2102. 7:
  2103. id: 397
  2104. damage: 3
  2105. skin: 'textures.minecraft.net/texture/295ef836389af993158aba27ff37b6567185f7a721ca90fdfeb937a7cb5747'
  2106. name: 'Creeper'
  2107. unbreakable: false
  2108. lore:
  2109. - 'none'
  2110. 8:
  2111. id: 397
  2112. damage: 3
  2113. skin: 'textures.minecraft.net/texture/38957d5023c937c4c41aa2412d43410bda23cf79a9f6ab36b76fef2d7c429'
  2114. name: 'Magma Slime'
  2115. unbreakable: false
  2116. lore:
  2117. - 'none'
  2118. 9:
  2119. id: 397
  2120. damage: 3
  2121. skin: 'textures.minecraft.net/texture/cd541541daaff50896cd258bdbdd4cf80c3ba816735726078bfe393927e57f1'
  2122. name: 'Spider'
  2123. unbreakable: false
  2124. lore:
  2125. - 'none'
  2126. 10:
  2127. id: 397
  2128. damage: 3
  2129. skin: 'textures.minecraft.net/texture/a0c2549a893726988f3428bef799875ba871688ae64eb0cfdc43f7d6e24c6c'
  2130. name: 'Mario'
  2131. unbreakable: false
  2132. lore:
  2133. - 'none'
  2134. 11:
  2135. id: 397
  2136. damage: 3
  2137. skin: 'textures.minecraft.net/texture/b6ad46433a34ed66ccbafb46778ae493f2b3a2a5fdc693f8bffeb3386ccdf3CAPEurl'
  2138. name: 'Human'
  2139. unbreakable: false
  2140. lore:
  2141. - 'none'
  2142. 12:
  2143. id: 397
  2144. damage: 3
  2145. skin: 'textures.minecraft.net/texture/5fc8b863995fb84685c273c859548c75d94f9b82cce41b1efff454fe03cc123'
  2146. name: 'Yoshi'
  2147. unbreakable: false
  2148. lore:
  2149. - 'none'
  2150. 13:
  2151. id: 397
  2152. damage: 3
  2153. skin: 'textures.minecraft.net/texture/4b62d1dbf94e8cbb3c5327d96aac121d20677338924a5ed6de4cbf578a73d'
  2154. name: 'Pokeball'
  2155. unbreakable: false
  2156. lore:
  2157. - 'none'
  2158. 14:
  2159. id: 397
  2160. damage: 3
  2161. skin: 'textures.minecraft.net/texture/f6c5ee57717f561fc12b9f8878fbe0d0d62c72facfad61c0d27cade54e818c14'
  2162. name: 'Pikachu'
  2163. unbreakable: false
  2164. lore:
  2165. - 'none'
  2166. 15:
  2167. id: 397
  2168. damage: 3
  2169. skin: 'textures.minecraft.net/texture/538992fa71d5d98789d5061ddd68e2b7af9efc253b39e1b346343d7789f8dc'
  2170. name: 'Charmander'
  2171. unbreakable: false
  2172. lore:
  2173. - 'none'
  2174. 16:
  2175. id: 397
  2176. damage: 3
  2177. skin: 'textures.minecraft.net/texture/c99ec943b48c6f82f32acd9e8626546de8416cce4da41cbaa02c69feefbea'
  2178. name: 'Bulbasaur'
  2179. unbreakable: false
  2180. lore:
  2181. - 'none'
  2182. 17:
  2183. id: 397
  2184. damage: 3
  2185. skin: 'textures.minecraft.net/texture/f53ebc976cb6771f3e95117b326842ff7812c740bece96bb8858346d841'
  2186. name: 'Squirtle'
  2187. unbreakable: false
  2188. lore:
  2189. - 'none'
  2190. 18:
  2191. id: 397
  2192. damage: 3
  2193. skin: 'textures.minecraft.net/texture/d9e0b56996f494adabebac9ea2a52c64ac486a5e0b8a89e485945dcca2b'
  2194. name: 'Mewto'
  2195. unbreakable: false
  2196. lore:
  2197. - 'none'
  2198. 19:
  2199. id: 397
  2200. damage: 3
  2201. skin: 'textures.minecraft.net/texture/f06555706b641fdaf436c07663f923afc5ee72146f90195fb337b9de766588d'
  2202. name: 'Food'
  2203. unbreakable: false
  2204. lore:
  2205. - 'none'
  2206. 20:
  2207. id: 397
  2208. damage: 3
  2209. skin: 'textures.minecraft.net/texture/b26f0b5e52337c76b5a80e3d971477a8e38b0d71390f13defe1316ad6a0a67c'
  2210. name: 'Burger'
  2211. unbreakable: false
  2212. lore:
  2213. - 'none'
  2214. 21:
  2215. id: 397
  2216. damage: 3
  2217. skin: 'textures.minecraft.net/texture/d7ab62fb77189352541dd95a8ee7e3631f7c1658f463f661680c283493d8a'
  2218. name: 'Milk'
  2219. unbreakable: false
  2220. lore:
  2221. - 'none'
  2222. 22:
  2223. id: 397
  2224. damage: 3
  2225. skin: 'textures.minecraft.net/texture/9a29335ffad5bdf825a96be8eb4c1a803dace929fc8e1178475f8f8d9c5668'
  2226. name: 'Bread'
  2227. unbreakable: false
  2228. lore:
  2229. - 'none'
  2230. 23:
  2231. id: 397
  2232. damage: 3
  2233. skin: 'textures.minecraft.net/texture/f71cc917159f14565f6afe22b9e33d5a23e423ecd8cb5dfba0b3f66d825389ca'
  2234. name: 'Fruit'
  2235. unbreakable: false
  2236. lore:
  2237. - 'none'
  2238. 24:
  2239. id: 397
  2240. damage: 3
  2241. skin: 'textures.minecraft.net/texture/6837a48ee530cfe35aca37969e4ea71d875237d2cb7a81b1ae80a75dc76e5a'
  2242. name: 'Fruit'
  2243. unbreakable: false
  2244. lore:
  2245. - 'none'
  2246. 25:
  2247. id: 397
  2248. damage: 3
  2249. skin: 'textures.minecraft.net/texture/dfd71e20fc50abf0de2ef7decfc01ce27ad51955759e072ceaab96355f594f0'
  2250. name: 'Sweet'
  2251. unbreakable: false
  2252. lore:
  2253. - 'none'
  2254. 26:
  2255. id: 397
  2256. damage: 3
  2257. skin: 'textures.minecraft.net/texture/819f948d17718adace5dd6e050c586229653fef645d7113ab94d17b639cc466'
  2258. name: 'Sweet'
  2259. unbreakable: false
  2260. lore:
  2261. - 'none'
  2262. 27:
  2263. id: 397
  2264. damage: 3
  2265. skin: 'textures.minecraft.net/texture/b0e38c176dbf7df9b0632c256eeb6c5aaca99e1c8c1a530656eaff0417aed22'
  2266. name: 'Burger'
  2267. unbreakable: false
  2268. lore:
  2269. - 'none'
  2270. 28:
  2271. id: 397
  2272. damage: 3
  2273. skin: 'textures.minecraft.net/texture/37ca2aa8a9f5d3246ee7f2d07e1d5fd4819125ecddf5a72e2f675355a3b9bcc'
  2274. name: 'Stormtrooper'
  2275. unbreakable: false
  2276. lore:
  2277. - 'none'
  2278. 29:
  2279. id: 397
  2280. damage: 3
  2281. skin: 'textures.minecraft.net/texture/52284e132bfd659bc6ada497c4fa3094cd93231a6b505a12ce7cd5135ba8ff93'
  2282. name: 'Stormtrooper'
  2283. unbreakable: false
  2284. lore:
  2285. - 'none'
  2286. 30:
  2287. id: 397
  2288. damage: 3
  2289. skin: 'textures.minecraft.net/texture/5685be67be3089dcccc73c4ddc44886e6666e0aa9817aacd4546ef58196038'
  2290. name: 'Stormtrooper'
  2291. unbreakable: false
  2292. lore:
  2293. - 'none'
  2294. 31:
  2295. id: 397
  2296. damage: 3
  2297. skin: 'textures.minecraft.net/texture/c535ff84f4b6d85626b92ca5d2619fd5599a96a585d851727d6633227a654'
  2298. name: 'Boba Fett'
  2299. unbreakable: false
  2300. lore:
  2301. - 'none'
  2302. 32:
  2303. id: 397
  2304. damage: 3
  2305. skin: 'textures.minecraft.net/texture/68f54244604274927974e579d222f0c931278e0eceead31872c81c8e6f441'
  2306. name: 'Jabba The Hutt'
  2307. unbreakable: false
  2308. lore:
  2309. - 'none'
  2310. 33:
  2311. id: 397
  2312. damage: 3
  2313. skin: 'textures.minecraft.net/texture/c9c0b6aa32b5a2c2d77f15dad54af3c2f201f818c7fa3ef83760648264fee2'
  2314. name: 'Wookie'
  2315. unbreakable: false
  2316. lore:
  2317. - 'none'
  2318. 34:
  2319. id: 397
  2320. damage: 3
  2321. skin: 'textures.minecraft.net/texture/4251d1e46d4d5fda32665da1f6cce29fd1c113491451c955f7668de32d37ae6'
  2322. name: 'Yoda'
  2323. unbreakable: false
  2324. lore:
  2325. - 'none'
  2326. 35:
  2327. id: 397
  2328. damage: 3
  2329. skin: 'textures.minecraft.net/texture/b0bcbea8d2ecce2e43daf5997e597b02c605f1babc11971ce4870342e3e1551'
  2330. name: 'R2D2'
  2331. unbreakable: false
  2332. lore:
  2333. - 'none'
  2334. 36:
  2335. id: 397
  2336. damage: 3
  2337. skin: 'textures.minecraft.net/texture/9fec991891f4143d40f013b98dc38dc53ed14ca75ebd32866efb126a32842a1'
  2338. name: 'C3PO'
  2339. unbreakable: false
  2340. lore:
  2341. - 'none'
  2342. 37:
  2343. id: 397
  2344. damage: 3
  2345. skin: 'textures.minecraft.net/texture/a116e69a845e227f7ca1fdde8c357c8c821ebd4ba619382ea4a1f87d4ae94'
  2346. name: 'Notch'
  2347. unbreakable: false
  2348. lore:
  2349. - 'none'
  2350. 38:
  2351. id: 397
  2352. damage: 3
  2353. skin: 'textures.minecraft.net/texture/3a22126c8187c352bf4dac5af2afe48dbf0d4e5f98542bdd9f6c5f52f5169b'
  2354. name: 'Shynixn'
  2355. unbreakable: false
  2356. lore:
  2357. - 'none'
  2358. 39:
  2359. id: 397
  2360. damage: 3
  2361. skin: 'textures.minecraft.net/texture/14e424b1676feec3a3f8ebade9e7d6a6f71f7756a869f36f7df0fc182d436e'
  2362. name: 'Santa'
  2363. unbreakable: false
  2364. lore:
  2365. - 'none'
  2366. 40:
  2367. id: 397
  2368. damage: 3
  2369. skin: 'textures.minecraft.net/texture/98b7ca3c7d314a61abed8fc18d797fc30b6efc8445425c4e250997e52e6cb'
  2370. name: 'Herobrine'
  2371. unbreakable: false
  2372. lore:
  2373. - 'none'
  2374. 41:
  2375. id: 397
  2376. damage: 3
  2377. skin: 'textures.minecraft.net/texture/d357444ade64ec6cea645ec57e775864d67c5fa62299786e03799317ee4ad'
  2378. name: 'Miner'
  2379. unbreakable: false
  2380. lore:
  2381. - 'none'
  2382. 42:
  2383. id: 397
  2384. damage: 3
  2385. skin: 'textures.minecraft.net/texture/42bc2de782fd6d7c50e9b3edb133487191d8f5546644c25be357cca2685db'
  2386. name: 'Sonic'
  2387. unbreakable: false
  2388. lore:
  2389. - 'none'
  2390. 43:
  2391. id: 397
  2392. damage: 3
  2393. skin: 'textures.minecraft.net/texture/fb3329b3c82ddfcd19255c42712eca7bc24472c03f78668faff7d8431997d693'
  2394. name: 'Reaper'
  2395. unbreakable: false
  2396. lore:
  2397. - 'none'
  2398. 44:
  2399. id: 397
  2400. damage: 3
  2401. skin: 'textures.minecraft.net/texture/797884d451dc7b7729de2076cd6c4912865ade70391d1ccec3e95fb39f8c5e1'
  2402. name: 'Crazy'
  2403. unbreakable: false
  2404. lore:
  2405. - 'none'
  2406. #--- Copy one of the items increment the number and add it above this line
  2407.  
  2408. ############################
  2409.  
  2410. # Particles-settings
  2411.  
  2412. # Settings for the petblock-particleEffects-category.
  2413. # You can find all particle names at the bottom of this file.
  2414. # You can add new particles by yourself!
  2415.  
  2416. # id: item id in the GUI
  2417. # damage: item damage in the the GUI
  2418. # skin: item skin in the GUI (Name of the player or the skin URL)
  2419. # name: item name in the GUI
  2420. # unbreakable: item unbreakable tag in the GUI
  2421. # lore: item lore in the GUI (Multiple lines support)
  2422.  
  2423. # effect name: name of the particleEffect
  2424. # effect speed: speed of the particleEffect
  2425. # effect amount: amount of particles of the particleEffect
  2426. # effect offx: offset x of the particleEffect
  2427. # effect offy: offset y of the particleEffect
  2428. # effect offz: offset z of the particleEffect
  2429. # effect red: red-color-code of the particleEffect (Only for color-particleEffects)
  2430. # effect green: green-color-code of the particleEffect (Only for color-particleEffects)
  2431. # effect blue: blue-color code of the particleEffect (Only for color-particleEffects)
  2432. # effect id: item id of the particleEffect (Only for material-particleEffects)
  2433. # effect damage: item damage of the particleEffect (Only for material-particleEffects)
  2434.  
  2435. ############################
  2436.  
  2437. particles:
  2438. 1:
  2439. id: 95
  2440. damage: 13
  2441. skin: 'none'
  2442. name: '&2None'
  2443. unbreakable: false
  2444. lore:
  2445. - 'none'
  2446. effect:
  2447. name: 'none'
  2448. speed: 0.0
  2449. amount: 0
  2450. offx: 0.0
  2451. offy: 0.0
  2452. offz: 0.0
  2453. 2:
  2454. id: 95
  2455. damage: 7
  2456. skin: 'none'
  2457. name: '&8Largesmoke'
  2458. unbreakable: false
  2459. lore:
  2460. - 'none'
  2461. effect:
  2462. name: 'largesmoke'
  2463. speed: 0.01
  2464. amount: 2
  2465. offx: 0.5
  2466. offy: 0.5
  2467. offz: 0.5
  2468. 3:
  2469. id: 95
  2470. damage: 8
  2471. skin: 'none'
  2472. name: '&fExplosion'
  2473. unbreakable: false
  2474. lore:
  2475. - 'none'
  2476. effect:
  2477. name: 'explode'
  2478. speed: 0.01
  2479. amount: 2
  2480. offx: 0.5
  2481. offy: 0.5
  2482. offz: 0.5
  2483. 4:
  2484. id: 351
  2485. damage: 12
  2486. skin: 'none'
  2487. name: '&9Blue-Trail'
  2488. unbreakable: false
  2489. lore:
  2490. - 'none'
  2491. effect:
  2492. name: 'reddust'
  2493. speed: 0.01
  2494. amount: 20
  2495. red: 0
  2496. green: 0
  2497. blue: 255
  2498. 5:
  2499. id: 351
  2500. damage: 1
  2501. skin: 'none'
  2502. name: '&cRed-Trail'
  2503. unbreakable: false
  2504. lore:
  2505. - 'none'
  2506. effect:
  2507. name: 'reddust'
  2508. speed: 0.01
  2509. amount: 20
  2510. red: 255
  2511. green: 0
  2512. blue: 0
  2513. 6:
  2514. id: 351
  2515. damage: 10
  2516. skin: 'none'
  2517. name: '&aGreen-Trail'
  2518. unbreakable: false
  2519. lore:
  2520. - 'none'
  2521. effect:
  2522. name: 'reddust'
  2523. speed: 0.01
  2524. amount: 20
  2525. red: 0
  2526. green: 255
  2527. blue: 0
  2528. 7:
  2529. id: 152
  2530. damage: 0
  2531. skin: 'none'
  2532. name: '&cRedstone-Crack'
  2533. unbreakable: false
  2534. lore:
  2535. - 'none'
  2536. effect:
  2537. name: 'blockcrack'
  2538. amount: 2
  2539. speed: 0.01
  2540. offx: 0.5
  2541. offy: 0.5
  2542. offz: 0.5
  2543. id: 166
  2544. damage: 0
  2545. 8:
  2546. id: 12
  2547. damage: 0
  2548. skin: 'none'
  2549. name: '&eSand-Crack'
  2550. unbreakable: false
  2551. lore:
  2552. - 'none'
  2553. effect:
  2554. name: 'blockdust'
  2555. speed: 0.01
  2556. amount: 2
  2557. offx: 0.5
  2558. offy: 0.5
  2559. offz: 0.5
  2560. id: 12
  2561. damage: 0
  2562. 9:
  2563. id: 18
  2564. damage: 0
  2565. skin: 'none'
  2566. name: '&2Leaves-Crack'
  2567. unbreakable: false
  2568. lore:
  2569. - 'none'
  2570. effect:
  2571. name: 'blockdust'
  2572. speed: 0.01
  2573. amount: 2
  2574. offx: 0.5
  2575. offy: 0.5
  2576. offz: 0.5
  2577. id: 18
  2578. damage: 0
  2579. 10:
  2580. id: 95
  2581. damage: 11
  2582. skin: 'none'
  2583. name: '&9Splash'
  2584. unbreakable: false
  2585. lore:
  2586. - 'none'
  2587. effect:
  2588. name: 'splash'
  2589. speed: 0.01
  2590. amount: 2
  2591. offx: 0.5
  2592. offy: 0.5
  2593. offz: 0.5
  2594. 11:
  2595. id: 95
  2596. damage: 2
  2597. skin: 'none'
  2598. name: '&5Portal'
  2599. unbreakable: false
  2600. lore:
  2601. - 'none'
  2602. effect:
  2603. name: 'portal'
  2604. speed: 0.01
  2605. amount: 2
  2606. offx: 0.5
  2607. offy: 0.5
  2608. offz: 0.5
  2609. 12:
  2610. id: 95
  2611. damage: 0
  2612. skin: 'none'
  2613. name: '&fSpell'
  2614. unbreakable: false
  2615. lore:
  2616. - 'none'
  2617. effect:
  2618. name: 'spell'
  2619. speed: 0.01
  2620. amount: 2
  2621. offx: 0.5
  2622. offy: 0.5
  2623. offz: 0.5
  2624. 13:
  2625. id: 351
  2626. damage: 11
  2627. skin: 'none'
  2628. name: '&eYello-Trail'
  2629. unbreakable: false
  2630. lore:
  2631. - 'none'
  2632. effect:
  2633. name: 'reddust'
  2634. speed: 0.01
  2635. amount: 20
  2636. red: 255
  2637. green: 185
  2638. blue: 15
  2639. 14:
  2640. id: 351
  2641. damage: 13
  2642. skin: 'none'
  2643. name: '&5Purple-Trail'
  2644. unbreakable: false
  2645. lore:
  2646. - 'none'
  2647. effect:
  2648. name: 'reddust'
  2649. speed: 0.01
  2650. amount: 20
  2651. red: 139
  2652. green: 0
  2653. blue: 139
  2654. 15:
  2655. id: 351
  2656. damage: 14
  2657. skin: 'none'
  2658. name: '&6Orange-Trail'
  2659. unbreakable: false
  2660. lore:
  2661. - 'none'
  2662. effect:
  2663. name: 'reddust'
  2664. speed: 0.01
  2665. amount: 20
  2666. red: 238
  2667. green: 118
  2668. blue: 0
  2669. 16:
  2670. id: 42
  2671. damage: 0
  2672. skin: 'none'
  2673. name: '&fIron-Crack'
  2674. unbreakable: false
  2675. lore:
  2676. - 'none'
  2677. effect:
  2678. name: 'blockdust'
  2679. amount: 2
  2680. speed: 0.01
  2681. offx: 0.5
  2682. offy: 0.5
  2683. offz: 0.5
  2684. id: 42
  2685. damage: 0
  2686. 17:
  2687. id: 41
  2688. damage: 0
  2689. skin: 'none'
  2690. name: '&eGold-Crack'
  2691. unbreakable: false
  2692. lore:
  2693. - 'none'
  2694. effect:
  2695. name: 'blockdust'
  2696. speed: 0.01
  2697. amount: 2
  2698. offx: 0.5
  2699. offy: 0.5
  2700. offz: 0.5
  2701. id: 41
  2702. damage: 0
  2703. 18:
  2704. id: 57
  2705. damage: 0
  2706. skin: 'none'
  2707. name: '&bDiamond-Crack'
  2708. unbreakable: false
  2709. lore:
  2710. - 'none'
  2711. effect:
  2712. name: 'blockdust'
  2713. speed: 0.01
  2714. amount: 2
  2715. offx: 0.5
  2716. offy: 0.5
  2717. offz: 0.5
  2718. id: 57
  2719. damage: 0
  2720. 19:
  2721. id: 95
  2722. damage: 1
  2723. skin: 'none'
  2724. name: '&6Flames'
  2725. unbreakable: false
  2726. lore:
  2727. - 'none'
  2728. effect:
  2729. name: 'flame'
  2730. speed: 0.01
  2731. amount: 2
  2732. offx: 0.5
  2733. offy: 0.5
  2734. offz: 0.5
  2735. 20:
  2736. id: 95
  2737. damage: 5
  2738. skin: 'none'
  2739. name: '&aHappiness'
  2740. unbreakable: false
  2741. lore:
  2742. - 'none'
  2743. effect:
  2744. name: 'happyVillager'
  2745. speed: 0.01
  2746. amount: 1
  2747. offx: 0.5
  2748. offy: 0.5
  2749. offz: 0.5
  2750. 21:
  2751. id: 95
  2752. damage: 14
  2753. skin: 'none'
  2754. name: '&cHearts'
  2755. unbreakable: false
  2756. lore:
  2757. - 'none'
  2758. effect:
  2759. name: 'heart'
  2760. speed: 4.0
  2761. amount: 1
  2762. offx: 0.5
  2763. offy: 0.5
  2764. offz: 0.5
  2765. 22:
  2766. id: 351
  2767. damage: 3
  2768. skin: 'none'
  2769. name: '&6Brown-Trail'
  2770. unbreakable: false
  2771. lore:
  2772. - 'none'
  2773. effect:
  2774. name: 'reddust'
  2775. speed: 0.01
  2776. amount: 20
  2777. red: 139
  2778. green: 69
  2779. blue: 19
  2780. 23:
  2781. id: 351
  2782. damage: 15
  2783. skin: 'none'
  2784. name: '&fWhite-Trail'
  2785. unbreakable: false
  2786. lore:
  2787. - 'none'
  2788. effect:
  2789. name: 'reddust'
  2790. speed: 0.01
  2791. amount: 20
  2792. red: 255
  2793. green: 255
  2794. blue: 255
  2795. 24:
  2796. id: 351
  2797. damage: 0
  2798. skin: 'none'
  2799. name: '&8Black-Trail'
  2800. unbreakable: false
  2801. lore:
  2802. - 'none'
  2803. effect:
  2804. name: 'reddust'
  2805. speed: 0.01
  2806. amount: 20
  2807. red: 0
  2808. green: 0
  2809. blue: 0
  2810. 25:
  2811. id: 1
  2812. damage: 0
  2813. skin: 'none'
  2814. name: '&7Stone-Crack'
  2815. unbreakable: false
  2816. lore:
  2817. - 'none'
  2818. effect:
  2819. name: 'blockdust'
  2820. amount: 2
  2821. speed: 0.01
  2822. offx: 0.5
  2823. offy: 0.5
  2824. offz: 0.5
  2825. id: 1
  2826. damage: 0
  2827. 26:
  2828. id: 2
  2829. damage: 0
  2830. skin: 'none'
  2831. name: '&aGrass-Crack'
  2832. unbreakable: false
  2833. lore:
  2834. - 'none'
  2835. effect:
  2836. name: 'blockdust'
  2837. speed: 0.01
  2838. amount: 2
  2839. offx: 0.5
  2840. offy: 0.5
  2841. offz: 0.5
  2842. id: 2
  2843. damage: 0
  2844. 27:
  2845. id: 5
  2846. damage: 0
  2847. skin: 'none'
  2848. name: '&6Wood-Crack'
  2849. unbreakable: false
  2850. lore:
  2851. - 'none'
  2852. effect:
  2853. name: 'blockdust'
  2854. speed: 0.01
  2855. amount: 2
  2856. offx: 0.5
  2857. offy: 0.5
  2858. offz: 0.5
  2859. id: 5
  2860. damage: 0
  2861. #--- Copy one of the particles, increment the number and add it above this line
  2862.  
  2863.  
  2864. #******************
  2865. # Particle list (Color/material particles require the color/material template to work)
  2866. #******************
  2867. # explode
  2868. # largeexplode
  2869. # hugeexplosion
  2870. # fireworksSpark
  2871. # bubble
  2872. # splash
  2873. # wake
  2874. # suspended
  2875. # depthSuspend
  2876. # crit
  2877. # magicCrit
  2878. # smoke
  2879. # largesmoke
  2880. # spell
  2881. # instantSpell
  2882. # mobSpell [Color]
  2883. # mobSpellAmbient [Color]
  2884. # witchMagic
  2885. # dripWater
  2886. # dripLava
  2887. # angryVillager
  2888. # happyVillager
  2889. # townaura
  2890. # note [Color]
  2891. # portal
  2892. # enchantmenttable
  2893. # flame
  2894. # lava
  2895. # footstep
  2896. # cloud
  2897. # reddust [Color]
  2898. # snowballpoof
  2899. # snowshovel
  2900. # slime
  2901. # heart
  2902. # barrier
  2903. # iconcrack [Material]
  2904. # blockcrack [Material]
  2905. # blockdust [Material]
  2906. # droplet
  2907. # take
  2908. # mobappearance
  2909.  
  2910. #*******************
  2911. # Sound list [1.9 and above]
  2912. #*******************
  2913. # AMBIENT_CAVE
  2914. # BLOCK_ANVIL_BREAK
  2915. # BLOCK_ANVIL_DESTROY
  2916. # BLOCK_ANVIL_FALL
  2917. # BLOCK_ANVIL_HIT
  2918. # BLOCK_ANVIL_LAND
  2919. # BLOCK_ANVIL_PLACE
  2920. # BLOCK_ANVIL_STEP
  2921. # BLOCK_ANVIL_USE
  2922. # BLOCK_BREWING_STAND_BREW
  2923. # BLOCK_CHEST_CLOSE
  2924. # BLOCK_CHEST_LOCKED
  2925. # BLOCK_CHEST_OPEN
  2926. # BLOCK_CHORUS_FLOWER_DEATH
  2927. # BLOCK_CHORUS_FLOWER_GROW
  2928. # BLOCK_CLOTH_BREAK
  2929. # BLOCK_CLOTH_FALL
  2930. # BLOCK_CLOTH_HIT
  2931. # BLOCK_CLOTH_PLACE
  2932. # BLOCK_CLOTH_STEP
  2933. # BLOCK_COMPARATOR_CLICK
  2934. # BLOCK_DISPENSER_DISPENSE
  2935. # BLOCK_DISPENSER_FAIL
  2936. # BLOCK_DISPENSER_LAUNCH
  2937. # BLOCK_ENCHANTMENT_TABLE_USE
  2938. # BLOCK_ENDERCHEST_CLOSE
  2939. # BLOCK_ENDERCHEST_OPEN
  2940. # BLOCK_END_GATEWAY_SPAWN
  2941. # BLOCK_END_PORTAL_FRAME_FILL
  2942. # BLOCK_END_PORTAL_SPAWN
  2943. # BLOCK_FENCE_GATE_CLOSE
  2944. # BLOCK_FENCE_GATE_OPEN
  2945. # BLOCK_FIRE_AMBIENT
  2946. # BLOCK_FIRE_EXTINGUISH
  2947. # BLOCK_FURNACE_FIRE_CRACKLE
  2948. # BLOCK_GLASS_BREAK
  2949. # BLOCK_GLASS_FALL
  2950. # BLOCK_GLASS_HIT
  2951. # BLOCK_GLASS_PLACE
  2952. # BLOCK_GLASS_STEP
  2953. # BLOCK_GRASS_BREAK
  2954. # BLOCK_GRASS_FALL
  2955. # BLOCK_GRASS_HIT
  2956. # BLOCK_GRASS_PLACE
  2957. # BLOCK_GRASS_STEP
  2958. # BLOCK_GRAVEL_BREAK
  2959. # BLOCK_GRAVEL_FALL
  2960. # BLOCK_GRAVEL_HIT
  2961. # BLOCK_GRAVEL_PLACE
  2962. # BLOCK_GRAVEL_STEP
  2963. # BLOCK_IRON_DOOR_CLOSE
  2964. # BLOCK_IRON_DOOR_OPEN
  2965. # BLOCK_IRON_TRAPDOOR_CLOSE
  2966. # BLOCK_IRON_TRAPDOOR_OPEN
  2967. # BLOCK_LADDER_BREAK
  2968. # BLOCK_LADDER_FALL
  2969. # BLOCK_LADDER_HIT
  2970. # BLOCK_LADDER_PLACE
  2971. # BLOCK_LADDER_STEP
  2972. # BLOCK_LAVA_AMBIENT
  2973. # BLOCK_LAVA_EXTINGUISH
  2974. # BLOCK_LAVA_POP
  2975. # BLOCK_LEVER_CLICK
  2976. # BLOCK_METAL_BREAK
  2977. # BLOCK_METAL_FALL
  2978. # BLOCK_METAL_HIT
  2979. # BLOCK_METAL_PLACE
  2980. # BLOCK_METAL_PRESSUREPLATE_CLICK_OFF
  2981. # BLOCK_METAL_PRESSUREPLATE_CLICK_ON
  2982. # BLOCK_METAL_STEP
  2983. # BLOCK_NOTE_BASEDRUM
  2984. # BLOCK_NOTE_BASS
  2985. # BLOCK_NOTE_BELL
  2986. # BLOCK_NOTE_CHIME
  2987. # BLOCK_NOTE_FLUTE
  2988. # BLOCK_NOTE_GUITAR
  2989. # BLOCK_NOTE_HARP
  2990. # BLOCK_NOTE_HAT
  2991. # BLOCK_NOTE_PLING
  2992. # BLOCK_NOTE_SNARE
  2993. # BLOCK_NOTE_XYLOPHONE
  2994. # BLOCK_PISTON_CONTRACT
  2995. # BLOCK_PISTON_EXTEND
  2996. # BLOCK_PORTAL_AMBIENT
  2997. # BLOCK_PORTAL_TRAVEL
  2998. # BLOCK_PORTAL_TRIGGER
  2999. # BLOCK_REDSTONE_TORCH_BURNOUT
  3000. # BLOCK_SAND_BREAK
  3001. # BLOCK_SAND_FALL
  3002. # BLOCK_SAND_HIT
  3003. # BLOCK_SAND_PLACE
  3004. # BLOCK_SAND_STEP
  3005. # BLOCK_SHULKER_BOX_CLOSE
  3006. # BLOCK_SHULKER_BOX_OPEN
  3007. # BLOCK_SLIME_BREAK
  3008. # BLOCK_SLIME_FALL
  3009. # BLOCK_SLIME_HIT
  3010. # BLOCK_SLIME_PLACE
  3011. # BLOCK_SLIME_STEP
  3012. # BLOCK_SNOW_BREAK
  3013. # BLOCK_SNOW_FALL
  3014. # BLOCK_SNOW_HIT
  3015. # BLOCK_SNOW_PLACE
  3016. # BLOCK_SNOW_STEP
  3017. # BLOCK_STONE_BREAK
  3018. # BLOCK_STONE_BUTTON_CLICK_OFF
  3019. # BLOCK_STONE_BUTTON_CLICK_ON
  3020. # BLOCK_STONE_FALL
  3021. # BLOCK_STONE_HIT
  3022. # BLOCK_STONE_PLACE
  3023. # BLOCK_STONE_PRESSUREPLATE_CLICK_OFF
  3024. # BLOCK_STONE_PRESSUREPLATE_CLICK_ON
  3025. # BLOCK_STONE_STEP
  3026. # BLOCK_TRIPWIRE_ATTACH
  3027. # BLOCK_TRIPWIRE_CLICK_OFF
  3028. # BLOCK_TRIPWIRE_CLICK_ON
  3029. # BLOCK_TRIPWIRE_DETACH
  3030. # BLOCK_WATERLILY_PLACE
  3031. # BLOCK_WATER_AMBIENT
  3032. # BLOCK_WOODEN_DOOR_CLOSE
  3033. # BLOCK_WOODEN_DOOR_OPEN
  3034. # BLOCK_WOODEN_TRAPDOOR_CLOSE
  3035. # BLOCK_WOODEN_TRAPDOOR_OPEN
  3036. # BLOCK_WOOD_BREAK
  3037. # BLOCK_WOOD_BUTTON_CLICK_OFF
  3038. # BLOCK_WOOD_BUTTON_CLICK_ON
  3039. # BLOCK_WOOD_FALL
  3040. # BLOCK_WOOD_HIT
  3041. # BLOCK_WOOD_PLACE
  3042. # BLOCK_WOOD_PRESSUREPLATE_CLICK_OFF
  3043. # BLOCK_WOOD_PRESSUREPLATE_CLICK_ON
  3044. # BLOCK_WOOD_STEP
  3045. # ENCHANT_THORNS_HIT
  3046. # ENTITY_ARMORSTAND_BREAK
  3047. # ENTITY_ARMORSTAND_FALL
  3048. # ENTITY_ARMORSTAND_HIT
  3049. # ENTITY_ARMORSTAND_PLACE
  3050. # ENTITY_ARROW_HIT
  3051. # ENTITY_ARROW_HIT_PLAYER
  3052. # ENTITY_ARROW_SHOOT
  3053. # ENTITY_BAT_AMBIENT
  3054. # ENTITY_BAT_DEATH
  3055. # ENTITY_BAT_HURT
  3056. # ENTITY_BAT_LOOP
  3057. # ENTITY_BAT_TAKEOFF
  3058. # ENTITY_BLAZE_AMBIENT
  3059. # ENTITY_BLAZE_BURN
  3060. # ENTITY_BLAZE_DEATH
  3061. # ENTITY_BLAZE_HURT
  3062. # ENTITY_BLAZE_SHOOT
  3063. # ENTITY_BOAT_PADDLE_LAND
  3064. # ENTITY_BOAT_PADDLE_WATER
  3065. # ENTITY_BOBBER_RETRIEVE
  3066. # ENTITY_BOBBER_SPLASH
  3067. # ENTITY_BOBBER_THROW
  3068. # ENTITY_CAT_AMBIENT
  3069. # ENTITY_CAT_DEATH
  3070. # ENTITY_CAT_HISS
  3071. # ENTITY_CAT_HURT
  3072. # ENTITY_CAT_PURR
  3073. # ENTITY_CAT_PURREOW
  3074. # ENTITY_CHICKEN_AMBIENT
  3075. # ENTITY_CHICKEN_DEATH
  3076. # ENTITY_CHICKEN_EGG
  3077. # ENTITY_CHICKEN_HURT
  3078. # ENTITY_CHICKEN_STEP
  3079. # ENTITY_COW_AMBIENT
  3080. # ENTITY_COW_DEATH
  3081. # ENTITY_COW_HURT
  3082. # ENTITY_COW_MILK
  3083. # ENTITY_COW_STEP
  3084. # ENTITY_CREEPER_DEATH
  3085. # ENTITY_CREEPER_HURT
  3086. # ENTITY_CREEPER_PRIMED
  3087. # ENTITY_DONKEY_AMBIENT
  3088. # ENTITY_DONKEY_ANGRY
  3089. # ENTITY_DONKEY_CHEST
  3090. # ENTITY_DONKEY_DEATH
  3091. # ENTITY_DONKEY_HURT
  3092. # ENTITY_EGG_THROW
  3093. # ENTITY_ELDER_GUARDIAN_AMBIENT
  3094. # ENTITY_ELDER_GUARDIAN_AMBIENT_LAND
  3095. # ENTITY_ELDER_GUARDIAN_CURSE
  3096. # ENTITY_ELDER_GUARDIAN_DEATH
  3097. # ENTITY_ELDER_GUARDIAN_DEATH_LAND
  3098. # ENTITY_ELDER_GUARDIAN_FLOP
  3099. # ENTITY_ELDER_GUARDIAN_HURT
  3100. # ENTITY_ELDER_GUARDIAN_HURT_LAND
  3101. # ENTITY_ENDERDRAGON_AMBIENT
  3102. # ENTITY_ENDERDRAGON_DEATH
  3103. # ENTITY_ENDERDRAGON_FIREBALL_EXPLODE
  3104. # ENTITY_ENDERDRAGON_FLAP
  3105. # ENTITY_ENDERDRAGON_GROWL
  3106. # ENTITY_ENDERDRAGON_HURT
  3107. # ENTITY_ENDERDRAGON_SHOOT
  3108. # ENTITY_ENDEREYE_DEATH
  3109. # ENTITY_ENDEREYE_LAUNCH
  3110. # ENTITY_ENDERMEN_AMBIENT
  3111. # ENTITY_ENDERMEN_DEATH
  3112. # ENTITY_ENDERMEN_HURT
  3113. # ENTITY_ENDERMEN_SCREAM
  3114. # ENTITY_ENDERMEN_STARE
  3115. # ENTITY_ENDERMEN_TELEPORT
  3116. # ENTITY_ENDERMITE_AMBIENT
  3117. # ENTITY_ENDERMITE_DEATH
  3118. # ENTITY_ENDERMITE_HURT
  3119. # ENTITY_ENDERMITE_STEP
  3120. # ENTITY_ENDERPEARL_THROW
  3121. # ENTITY_EVOCATION_FANGS_ATTACK
  3122. # ENTITY_EVOCATION_ILLAGER_AMBIENT
  3123. # ENTITY_EVOCATION_ILLAGER_CAST_SPELL
  3124. # ENTITY_EVOCATION_ILLAGER_DEATH
  3125. # ENTITY_EVOCATION_ILLAGER_HURT
  3126. # ENTITY_EVOCATION_ILLAGER_PREPARE_ATTACK
  3127. # ENTITY_EVOCATION_ILLAGER_PREPARE_SUMMON
  3128. # ENTITY_EVOCATION_ILLAGER_PREPARE_WOLOLO
  3129. # ENTITY_EXPERIENCE_BOTTLE_THROW
  3130. # ENTITY_EXPERIENCE_ORB_PICKUP
  3131. # ENTITY_FIREWORK_BLAST
  3132. # ENTITY_FIREWORK_BLAST_FAR
  3133. # ENTITY_FIREWORK_LARGE_BLAST
  3134. # ENTITY_FIREWORK_LARGE_BLAST_FAR
  3135. # ENTITY_FIREWORK_LAUNCH
  3136. # ENTITY_FIREWORK_SHOOT
  3137. # ENTITY_FIREWORK_TWINKLE
  3138. # ENTITY_FIREWORK_TWINKLE_FAR
  3139. # ENTITY_GENERIC_BIG_FALL
  3140. # ENTITY_GENERIC_BURN
  3141. # ENTITY_GENERIC_DEATH
  3142. # ENTITY_GENERIC_DRINK
  3143. # ENTITY_GENERIC_EAT
  3144. # ENTITY_GENERIC_EXPLODE
  3145. # ENTITY_GENERIC_EXTINGUISH_FIRE
  3146. # ENTITY_GENERIC_HURT
  3147. # ENTITY_GENERIC_SMALL_FALL
  3148. # ENTITY_GENERIC_SPLASH
  3149. # ENTITY_GENERIC_SWIM
  3150. # ENTITY_GHAST_AMBIENT
  3151. # ENTITY_GHAST_DEATH
  3152. # ENTITY_GHAST_HURT
  3153. # ENTITY_GHAST_SCREAM
  3154. # ENTITY_GHAST_SHOOT
  3155. # ENTITY_GHAST_WARN
  3156. # ENTITY_GUARDIAN_AMBIENT
  3157. # ENTITY_GUARDIAN_AMBIENT_LAND
  3158. # ENTITY_GUARDIAN_ATTACK
  3159. # ENTITY_GUARDIAN_DEATH
  3160. # ENTITY_GUARDIAN_DEATH_LAND
  3161. # ENTITY_GUARDIAN_FLOP
  3162. # ENTITY_GUARDIAN_HURT
  3163. # ENTITY_GUARDIAN_HURT_LAND
  3164. # ENTITY_HORSE_AMBIENT
  3165. # ENTITY_HORSE_ANGRY
  3166. # ENTITY_HORSE_ARMOR
  3167. # ENTITY_HORSE_BREATHE
  3168. # ENTITY_HORSE_DEATH
  3169. # ENTITY_HORSE_EAT
  3170. # ENTITY_HORSE_GALLOP
  3171. # ENTITY_HORSE_HURT
  3172. # ENTITY_HORSE_JUMP
  3173. # ENTITY_HORSE_LAND
  3174. # ENTITY_HORSE_SADDLE
  3175. # ENTITY_HORSE_STEP
  3176. # ENTITY_HORSE_STEP_WOOD
  3177. # ENTITY_HOSTILE_BIG_FALL
  3178. # ENTITY_HOSTILE_DEATH
  3179. # ENTITY_HOSTILE_HURT
  3180. # ENTITY_HOSTILE_SMALL_FALL
  3181. # ENTITY_HOSTILE_SPLASH
  3182. # ENTITY_HOSTILE_SWIM
  3183. # ENTITY_HUSK_AMBIENT
  3184. # ENTITY_HUSK_DEATH
  3185. # ENTITY_HUSK_HURT
  3186. # ENTITY_HUSK_STEP
  3187. # ENTITY_ILLUSION_ILLAGER_AMBIENT
  3188. # ENTITY_ILLUSION_ILLAGER_CAST_SPELL
  3189. # ENTITY_ILLUSION_ILLAGER_DEATH
  3190. # ENTITY_ILLUSION_ILLAGER_HURT
  3191. # ENTITY_ILLUSION_ILLAGER_MIRROR_MOVE
  3192. # ENTITY_ILLUSION_ILLAGER_PREPARE_BLINDNESS
  3193. # ENTITY_ILLUSION_ILLAGER_PREPARE_MIRROR
  3194. # ENTITY_IRONGOLEM_ATTACK
  3195. # ENTITY_IRONGOLEM_DEATH
  3196. # ENTITY_IRONGOLEM_HURT
  3197. # ENTITY_IRONGOLEM_STEP
  3198. # ENTITY_ITEMFRAME_ADD_ITEM
  3199. # ENTITY_ITEMFRAME_BREAK
  3200. # ENTITY_ITEMFRAME_PLACE
  3201. # ENTITY_ITEMFRAME_REMOVE_ITEM
  3202. # ENTITY_ITEMFRAME_ROTATE_ITEM
  3203. # ENTITY_ITEM_BREAK
  3204. # ENTITY_ITEM_PICKUP
  3205. # ENTITY_LEASHKNOT_BREAK
  3206. # ENTITY_LEASHKNOT_PLACE
  3207. # ENTITY_LIGHTNING_IMPACT
  3208. # ENTITY_LIGHTNING_THUNDER
  3209. # ENTITY_LINGERINGPOTION_THROW
  3210. # ENTITY_LLAMA_AMBIENT
  3211. # ENTITY_LLAMA_ANGRY
  3212. # ENTITY_LLAMA_CHEST
  3213. # ENTITY_LLAMA_DEATH
  3214. # ENTITY_LLAMA_EAT
  3215. # ENTITY_LLAMA_HURT
  3216. # ENTITY_LLAMA_SPIT
  3217. # ENTITY_LLAMA_STEP
  3218. # ENTITY_LLAMA_SWAG
  3219. # ENTITY_MAGMACUBE_DEATH
  3220. # ENTITY_MAGMACUBE_HURT
  3221. # ENTITY_MAGMACUBE_JUMP
  3222. # ENTITY_MAGMACUBE_SQUISH
  3223. # ENTITY_MINECART_INSIDE
  3224. # ENTITY_MINECART_RIDING
  3225. # ENTITY_MOOSHROOM_SHEAR
  3226. # ENTITY_MULE_AMBIENT
  3227. # ENTITY_MULE_CHEST
  3228. # ENTITY_MULE_DEATH
  3229. # ENTITY_MULE_HURT
  3230. # ENTITY_PAINTING_BREAK
  3231. # ENTITY_PAINTING_PLACE
  3232. # ENTITY_PARROT_AMBIENT
  3233. # ENTITY_PARROT_DEATH
  3234. # ENTITY_PARROT_EAT
  3235. # ENTITY_PARROT_FLY
  3236. # ENTITY_PARROT_HURT
  3237. # ENTITY_PARROT_IMITATE_BLAZE
  3238. # ENTITY_PARROT_IMITATE_CREEPER
  3239. # ENTITY_PARROT_IMITATE_ELDER_GUARDIAN
  3240. # ENTITY_PARROT_IMITATE_ENDERDRAGON
  3241. # ENTITY_PARROT_IMITATE_ENDERMAN
  3242. # ENTITY_PARROT_IMITATE_ENDERMITE
  3243. # ENTITY_PARROT_IMITATE_EVOCATION_ILLAGER
  3244. # ENTITY_PARROT_IMITATE_GHAST
  3245. # ENTITY_PARROT_IMITATE_HUSK
  3246. # ENTITY_PARROT_IMITATE_ILLUSION_ILLAGER
  3247. # ENTITY_PARROT_IMITATE_MAGMACUBE
  3248. # ENTITY_PARROT_IMITATE_POLAR_BEAR
  3249. # ENTITY_PARROT_IMITATE_SHULKER
  3250. # ENTITY_PARROT_IMITATE_SILVERFISH
  3251. # ENTITY_PARROT_IMITATE_SKELETON
  3252. # ENTITY_PARROT_IMITATE_SLIME
  3253. # ENTITY_PARROT_IMITATE_SPIDER
  3254. # ENTITY_PARROT_IMITATE_STRAY
  3255. # ENTITY_PARROT_IMITATE_VEX
  3256. # ENTITY_PARROT_IMITATE_VINDICATION_ILLAGER
  3257. # ENTITY_PARROT_IMITATE_WITCH
  3258. # ENTITY_PARROT_IMITATE_WITHER
  3259. # ENTITY_PARROT_IMITATE_WITHER_SKELETON
  3260. # ENTITY_PARROT_IMITATE_WOLF
  3261. # ENTITY_PARROT_IMITATE_ZOMBIE
  3262. # ENTITY_PARROT_IMITATE_ZOMBIE_PIGMAN
  3263. # ENTITY_PARROT_IMITATE_ZOMBIE_VILLAGER
  3264. # ENTITY_PARROT_STEP
  3265. # ENTITY_PIG_AMBIENT
  3266. # ENTITY_PIG_DEATH
  3267. # ENTITY_PIG_HURT
  3268. # ENTITY_PIG_SADDLE
  3269. # ENTITY_PIG_STEP
  3270. # ENTITY_PLAYER_ATTACK_CRIT
  3271. # ENTITY_PLAYER_ATTACK_KNOCKBACK
  3272. # ENTITY_PLAYER_ATTACK_NODAMAGE
  3273. # ENTITY_PLAYER_ATTACK_STRONG
  3274. # ENTITY_PLAYER_ATTACK_SWEEP
  3275. # ENTITY_PLAYER_ATTACK_WEAK
  3276. # ENTITY_PLAYER_BIG_FALL
  3277. # ENTITY_PLAYER_BREATH
  3278. # ENTITY_PLAYER_BURP
  3279. # ENTITY_PLAYER_DEATH
  3280. # ENTITY_PLAYER_HURT
  3281. # ENTITY_PLAYER_HURT_DROWN
  3282. # ENTITY_PLAYER_HURT_ON_FIRE
  3283. # ENTITY_PLAYER_LEVELUP
  3284. # ENTITY_PLAYER_SMALL_FALL
  3285. # ENTITY_PLAYER_SPLASH
  3286. # ENTITY_PLAYER_SWIM
  3287. # ENTITY_POLAR_BEAR_AMBIENT
  3288. # ENTITY_POLAR_BEAR_BABY_AMBIENT
  3289. # ENTITY_POLAR_BEAR_DEATH
  3290. # ENTITY_POLAR_BEAR_HURT
  3291. # ENTITY_POLAR_BEAR_STEP
  3292. # ENTITY_POLAR_BEAR_WARNING
  3293. # ENTITY_RABBIT_AMBIENT
  3294. # ENTITY_RABBIT_ATTACK
  3295. # ENTITY_RABBIT_DEATH
  3296. # ENTITY_RABBIT_HURT
  3297. # ENTITY_RABBIT_JUMP
  3298. # ENTITY_SHEEP_AMBIENT
  3299. # ENTITY_SHEEP_DEATH
  3300. # ENTITY_SHEEP_HURT
  3301. # ENTITY_SHEEP_SHEAR
  3302. # ENTITY_SHEEP_STEP
  3303. # ENTITY_SHULKER_AMBIENT
  3304. # ENTITY_SHULKER_BULLET_HIT
  3305. # ENTITY_SHULKER_BULLET_HURT
  3306. # ENTITY_SHULKER_CLOSE
  3307. # ENTITY_SHULKER_DEATH
  3308. # ENTITY_SHULKER_HURT
  3309. # ENTITY_SHULKER_HURT_CLOSED
  3310. # ENTITY_SHULKER_OPEN
  3311. # ENTITY_SHULKER_SHOOT
  3312. # ENTITY_SHULKER_TELEPORT
  3313. # ENTITY_SILVERFISH_AMBIENT
  3314. # ENTITY_SILVERFISH_DEATH
  3315. # ENTITY_SILVERFISH_HURT
  3316. # ENTITY_SILVERFISH_STEP
  3317. # ENTITY_SKELETON_AMBIENT
  3318. # ENTITY_SKELETON_DEATH
  3319. # ENTITY_SKELETON_HORSE_AMBIENT
  3320. # ENTITY_SKELETON_HORSE_DEATH
  3321. # ENTITY_SKELETON_HORSE_HURT
  3322. # ENTITY_SKELETON_HURT
  3323. # ENTITY_SKELETON_SHOOT
  3324. # ENTITY_SKELETON_STEP
  3325. # ENTITY_SLIME_ATTACK
  3326. # ENTITY_SLIME_DEATH
  3327. # ENTITY_SLIME_HURT
  3328. # ENTITY_SLIME_JUMP
  3329. # ENTITY_SLIME_SQUISH
  3330. # ENTITY_SMALL_MAGMACUBE_DEATH
  3331. # ENTITY_SMALL_MAGMACUBE_HURT
  3332. # ENTITY_SMALL_MAGMACUBE_SQUISH
  3333. # ENTITY_SMALL_SLIME_DEATH
  3334. # ENTITY_SMALL_SLIME_HURT
  3335. # ENTITY_SMALL_SLIME_JUMP
  3336. # ENTITY_SMALL_SLIME_SQUISH
  3337. # ENTITY_SNOWBALL_THROW
  3338. # ENTITY_SNOWMAN_AMBIENT
  3339. # ENTITY_SNOWMAN_DEATH
  3340. # ENTITY_SNOWMAN_HURT
  3341. # ENTITY_SNOWMAN_SHOOT
  3342. # ENTITY_SPIDER_AMBIENT
  3343. # ENTITY_SPIDER_DEATH
  3344. # ENTITY_SPIDER_HURT
  3345. # ENTITY_SPIDER_STEP
  3346. # ENTITY_SPLASH_POTION_BREAK
  3347. # ENTITY_SPLASH_POTION_THROW
  3348. # ENTITY_SQUID_AMBIENT
  3349. # ENTITY_SQUID_DEATH
  3350. # ENTITY_SQUID_HURT
  3351. # ENTITY_STRAY_AMBIENT
  3352. # ENTITY_STRAY_DEATH
  3353. # ENTITY_STRAY_HURT
  3354. # ENTITY_STRAY_STEP
  3355. # ENTITY_TNT_PRIMED
  3356. # ENTITY_VEX_AMBIENT
  3357. # ENTITY_VEX_CHARGE
  3358. # ENTITY_VEX_DEATH
  3359. # ENTITY_VEX_HURT
  3360. # ENTITY_VILLAGER_AMBIENT
  3361. # ENTITY_VILLAGER_DEATH
  3362. # ENTITY_VILLAGER_HURT
  3363. # ENTITY_VILLAGER_NO
  3364. # ENTITY_VILLAGER_TRADING
  3365. # ENTITY_VILLAGER_YES
  3366. # ENTITY_VINDICATION_ILLAGER_AMBIENT
  3367. # ENTITY_VINDICATION_ILLAGER_DEATH
  3368. # ENTITY_VINDICATION_ILLAGER_HURT
  3369. # ENTITY_WITCH_AMBIENT
  3370. # ENTITY_WITCH_DEATH
  3371. # ENTITY_WITCH_DRINK
  3372. # ENTITY_WITCH_HURT
  3373. # ENTITY_WITCH_THROW
  3374. # ENTITY_WITHER_AMBIENT
  3375. # ENTITY_WITHER_BREAK_BLOCK
  3376. # ENTITY_WITHER_DEATH
  3377. # ENTITY_WITHER_HURT
  3378. # ENTITY_WITHER_SHOOT
  3379. # ENTITY_WITHER_SKELETON_AMBIENT
  3380. # ENTITY_WITHER_SKELETON_DEATH
  3381. # ENTITY_WITHER_SKELETON_HURT
  3382. # ENTITY_WITHER_SKELETON_STEP
  3383. # ENTITY_WITHER_SPAWN
  3384. # ENTITY_WOLF_AMBIENT
  3385. # ENTITY_WOLF_DEATH
  3386. # ENTITY_WOLF_GROWL
  3387. # ENTITY_WOLF_HOWL
  3388. # ENTITY_WOLF_HURT
  3389. # ENTITY_WOLF_PANT
  3390. # ENTITY_WOLF_SHAKE
  3391. # ENTITY_WOLF_STEP
  3392. # ENTITY_WOLF_WHINE
  3393. # ENTITY_ZOMBIE_AMBIENT
  3394. # ENTITY_ZOMBIE_ATTACK_DOOR_WOOD
  3395. # ENTITY_ZOMBIE_ATTACK_IRON_DOOR
  3396. # ENTITY_ZOMBIE_BREAK_DOOR_WOOD
  3397. # ENTITY_ZOMBIE_DEATH
  3398. # ENTITY_ZOMBIE_HORSE_AMBIENT
  3399. # ENTITY_ZOMBIE_HORSE_DEATH
  3400. # ENTITY_ZOMBIE_HORSE_HURT
  3401. # ENTITY_ZOMBIE_HURT
  3402. # ENTITY_ZOMBIE_INFECT
  3403. # ENTITY_ZOMBIE_PIG_AMBIENT
  3404. # ENTITY_ZOMBIE_PIG_ANGRY
  3405. # ENTITY_ZOMBIE_PIG_DEATH
  3406. # ENTITY_ZOMBIE_PIG_HURT
  3407. # ENTITY_ZOMBIE_STEP
  3408. # ENTITY_ZOMBIE_VILLAGER_AMBIENT
  3409. # ENTITY_ZOMBIE_VILLAGER_CONVERTED
  3410. # ENTITY_ZOMBIE_VILLAGER_CURE
  3411. # ENTITY_ZOMBIE_VILLAGER_DEATH
  3412. # ENTITY_ZOMBIE_VILLAGER_HURT
  3413. # ENTITY_ZOMBIE_VILLAGER_STEP
  3414. # ITEM_ARMOR_EQUIP_CHAIN
  3415. # ITEM_ARMOR_EQUIP_DIAMOND
  3416. # ITEM_ARMOR_EQUIP_ELYTRA
  3417. # ITEM_ARMOR_EQUIP_GENERIC
  3418. # ITEM_ARMOR_EQUIP_GOLD
  3419. # ITEM_ARMOR_EQUIP_IRON
  3420. # ITEM_ARMOR_EQUIP_LEATHER
  3421. # ITEM_BOTTLE_EMPTY
  3422. # ITEM_BOTTLE_FILL
  3423. # ITEM_BOTTLE_FILL_DRAGONBREATH
  3424. # ITEM_BUCKET_EMPTY
  3425. # ITEM_BUCKET_EMPTY_LAVA
  3426. # ITEM_BUCKET_FILL
  3427. # ITEM_BUCKET_FILL_LAVA
  3428. # ITEM_CHORUS_FRUIT_TELEPORT
  3429. # ITEM_ELYTRA_FLYING
  3430. # ITEM_FIRECHARGE_USE
  3431. # ITEM_FLINTANDSTEEL_USE
  3432. # ITEM_HOE_TILL
  3433. # ITEM_SHIELD_BLOCK
  3434. # ITEM_SHIELD_BREAK
  3435. # ITEM_SHOVEL_FLATTEN
  3436. # ITEM_TOTEM_USE
  3437. # MUSIC_CREATIVE
  3438. # MUSIC_CREDITS
  3439. # MUSIC_DRAGON
  3440. # MUSIC_END
  3441. # MUSIC_GAME
  3442. # MUSIC_MENU
  3443. # MUSIC_NETHER
  3444. # RECORD_11
  3445. # RECORD_13
  3446. # RECORD_BLOCKS
  3447. # RECORD_CAT
  3448. # RECORD_CHIRP
  3449. # RECORD_FAR
  3450. # RECORD_MALL
  3451. # RECORD_MELLOHI
  3452. # RECORD_STAL
  3453. # RECORD_STRAD
  3454. # RECORD_WAIT
  3455. # RECORD_WARD
  3456. # UI_BUTTON_CLICK
  3457. # UI_TOAST_CHALLENGE_COMPLETE
  3458. # UI_TOAST_IN
  3459. # UI_TOAST_OUT
  3460. # WEATHER_RAIN
  3461. # WEATHER_RAIN_ABOVE
  3462.  
  3463. #*******************
  3464. # Sound list [1.8]
  3465. #*******************
  3466. # AMBIENCE_CAVE
  3467. # AMBIENCE_RAIN
  3468. # AMBIENCE_THUNDER
  3469. # ANVIL_BREAK
  3470. # ANVIL_LAND
  3471. # ANVIL_USE
  3472. # ARROW_HIT
  3473. # BURP
  3474. # CHEST_CLOSE
  3475. # CHEST_OPEN
  3476. # CLICK
  3477. # DOOR_CLOSE
  3478. # DOOR_OPEN
  3479. # DRINK
  3480. # EAT
  3481. # EXPLODE
  3482. # FALL_BIG
  3483. # FALL_SMALL
  3484. # FIRE
  3485. # FIRE_IGNITE
  3486. # FIZZ
  3487. # FUSE
  3488. # GLASS
  3489. # HURT_FLESH
  3490. # ITEM_BREAK
  3491. # ITEM_PICKUP
  3492. # LAVA
  3493. # LAVA_POP
  3494. # LEVEL_UP
  3495. # MINECART_BASE
  3496. # MINECART_INSIDE
  3497. # NOTE_BASS
  3498. # NOTE_PIANO
  3499. # NOTE_BASS_DRUM
  3500. # NOTE_STICKS
  3501. # NOTE_BASS_GUITAR
  3502. # NOTE_SNARE_DRUM
  3503. # NOTE_PLING
  3504. # ORB_PICKUP
  3505. # PISTON_EXTEND
  3506. # PISTON_RETRACT
  3507. # PORTAL
  3508. # PORTAL_TRAVEL
  3509. # PORTAL_TRIGGER
  3510. # SHOOT_ARROW
  3511. # SPLASH
  3512. # SPLASH2
  3513. # STEP_GRASS
  3514. # STEP_GRAVEL
  3515. # STEP_LADDER
  3516. # STEP_SAND
  3517. # STEP_SNOW
  3518. # STEP_STONE
  3519. # STEP_WOOD
  3520. # STEP_WOOL
  3521. # SWIM
  3522. # WATER
  3523. # WOOD_CLICK
  3524. # BAT_DEATH
  3525. # BAT_HURT
  3526. # BAT_IDLE
  3527. # BAT_LOOP
  3528. # BAT_TAKEOFF
  3529. # BLAZE_BREATH
  3530. # BLAZE_DEATH
  3531. # BLAZE_HIT
  3532. # CAT_HISS
  3533. # CAT_HIT
  3534. # CAT_MEOW
  3535. # CAT_PURR
  3536. # CAT_PURREOW
  3537. # CHICKEN_IDLE
  3538. # CHICKEN_HURT
  3539. # CHICKEN_EGG_POP
  3540. # CHICKEN_WALK
  3541. # COW_IDLE
  3542. # COW_HURT
  3543. # COW_WALK
  3544. # CREEPER_HISS
  3545. # CREEPER_DEATH
  3546. # ENDERDRAGON_DEATH
  3547. # ENDERDRAGON_GROWL
  3548. # ENDERDRAGON_HIT
  3549. # ENDERDRAGON_WINGS
  3550. # ENDERMAN_DEATH
  3551. # ENDERMAN_HIT
  3552. # ENDERMAN_IDLE
  3553. # ENDERMAN_TELEPORT
  3554. # ENDERMAN_SCREAM
  3555. # ENDERMAN_STARE
  3556. # GHAST_SCREAM
  3557. # GHAST_SCREAM2
  3558. # GHAST_CHARGE
  3559. # GHAST_DEATH
  3560. # GHAST_FIREBALL
  3561. # GHAST_MOAN
  3562. # IRONGOLEM_DEATH
  3563. # IRONGOLEM_HIT
  3564. # IRONGOLEM_THROW
  3565. # IRONGOLEM_WALK
  3566. # MAGMACUBE_WALK
  3567. # MAGMACUBE_WALK2
  3568. # MAGMACUBE_JUMP
  3569. # PIG_IDLE
  3570. # PIG_DEATH
  3571. # PIG_WALK
  3572. # SHEEP_IDLE
  3573. # SHEEP_SHEAR
  3574. # SHEEP_WALK
  3575. # SILVERFISH_HIT
  3576. # SILVERFISH_KILL
  3577. # SILVERFISH_IDLE
  3578. # SILVERFISH_WALK
  3579. # SKELETON_IDLE
  3580. # SKELETON_DEATH
  3581. # SKELETON_HURT
  3582. # SKELETON_WALK
  3583. # SLIME_ATTACK
  3584. # SLIME_WALK
  3585. # SLIME_WALK2
  3586. # SPIDER_IDLE
  3587. # SPIDER_DEATH
  3588. # SPIDER_WALK
  3589. # WITHER_DEATH
  3590. # WITHER_HURT
  3591. # WITHER_IDLE
  3592. # WITHER_SHOOT
  3593. # WITHER_SPAWN
  3594. # WOLF_BARK
  3595. # WOLF_DEATH
  3596. # WOLF_GROWL
  3597. # WOLF_HOWL
  3598. # WOLF_HURT
  3599. # WOLF_PANT
  3600. # WOLF_SHAKE
  3601. # WOLF_WALK
  3602. # WOLF_WHINE
  3603. # ZOMBIE_METAL
  3604. # ZOMBIE_WOOD
  3605. # ZOMBIE_WOODBREAK
  3606. # ZOMBIE_IDLE
  3607. # ZOMBIE_DEATH
  3608. # ZOMBIE_HURT
  3609. # ZOMBIE_INFECT
  3610. # ZOMBIE_UNFECT
  3611. # ZOMBIE_REMEDY
  3612. # ZOMBIE_WALK
  3613. # ZOMBIE_PIG_IDLE
  3614. # ZOMBIE_PIG_ANGRY
  3615. # ZOMBIE_PIG_DEATH
  3616. # ZOMBIE_PIG_HURT
  3617. # DIG_WOOL
  3618. # DIG_GRASS
  3619. # DIG_GRAVEL
  3620. # DIG_SAND
  3621. # DIG_SNOW
  3622. # DIG_STONE
  3623. # DIG_WOOD
  3624. # FIREWORK_BLAST
  3625. # FIREWORK_BLAST2
  3626. # FIREWORK_LARGE_BLAST
  3627. # FIREWORK_LARGE_BLAST2
  3628. # FIREWORK_TWINKLE
  3629. # FIREWORK_TWINKLE2
  3630. # FIREWORK_LAUNCH
  3631. # SUCCESSFUL_HIT
  3632. # HORSE_ANGRY
  3633. # HORSE_ARMOR
  3634. # HORSE_BREATHE
  3635. # HORSE_DEATH
  3636. # HORSE_GALLOP
  3637. # HORSE_HIT
  3638. # HORSE_IDLE
  3639. # HORSE_JUMP
  3640. # HORSE_LAND
  3641. # HORSE_SADDLE
  3642. # HORSE_SOFT
  3643. # HORSE_WOOD
  3644. # DONKEY_ANGRY
  3645. # DONKEY_DEATH
  3646. # DONKEY_HIT
  3647. # DONKEY_IDLE
  3648. # HORSE_SKELETON_DEATH
  3649. # HORSE_SKELETON_HIT
  3650. # HORSE_SKELETON_IDLE
  3651. # HORSE_ZOMBIE_DEATH
  3652. # HORSE_ZOMBIE_HIT
  3653. # HORSE_ZOMBIE_IDLE
  3654. # VILLAGER_DEATH
  3655. # VILLAGER_HAGGLE
  3656. # VILLAGER_HIT
  3657. # VILLAGER_IDLE
  3658. # VILLAGER_NO
  3659. # VILLAGER_YES
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement