Advertisement
NAOSAMA

Untitled

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