Advertisement
Drawethree

Untitled

Apr 10th, 2021
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.68 KB | None | 0 0
  1. #Config for ChatItem
  2. #For info visit
  3. #https://www.spigotmc.org/resources/chatitem.19064/
  4.  
  5. #Version info, DON'T TOUCH
  6. config-version: 12
  7.  
  8. #General configuration
  9. General:
  10. max-display-name-length: 10
  11. #The placeholders you want to use for the item. You can add as many as you want.
  12. placeholders:
  13. - "[i]"
  14. - "{item}"
  15. # How will the item be displayed in chat? {name} represents the display name of
  16. # the item, or material name (ex. Diamond Sword) if it doesn't have a customized
  17. # display name nor any available translation, and {amount} will be replaced by
  18. # the amount-format configured bellow.
  19. # You can use color codes.
  20. name-format: "&f<&b&l&o{name} {amount}&f>&r"
  21. # The amount format that will replace the {amount} placeholder in the 'name-format'
  22. # field above. The {times} placeholder represents the number of times the item is
  23. # presented in the itemstack, in other words, the actual item amount in the stack
  24. # the player holds. You can use color codes too.
  25. amount-format: "x{times}"
  26. # Should we apply the colors/formats set in the name format and/or amount format
  27. # settings on the name of the item even though it already has a color of it's own,
  28. # like a custom display name? Setting this to true will always disregard any color
  29. # or or message
  30. color-if-already-colored: true
  31. # Should we add the item amount even if there's only one item in the stack?
  32. force-add-amount: true
  33. # Should we let the message through, as-is (with the placeholder not replaced)
  34. # if the user doesn't have permission or if the user is on cooldown?
  35. let-message-through: true
  36. # Should we cancel the user message if the item in his (main) hand is air or null?
  37. # (No item in hand, that is)
  38. deny-if-no-item: false
  39. # If the above (deny-if-no-item) is set to false, what should the placeholder be replaced with?
  40. # Bellow you can configure that behaviour.
  41. hand:
  42. # Should the empty hand formatting be totally disabled? That will just leave the placeholder
  43. # untouched in the final message
  44. disabled: false
  45. # The string the placeholder shall be replaced with. You can use {name} as a placeholder for
  46. # the player's name and {display-name} as a placeholder for the player's display (custom) name.
  47. name: "&f<&b&l&o{display-name}&b&l&o's hand&f>"
  48. # The text to be displayed whe users hove their cursor above the name
  49. tooltip:
  50. - "&7Nothing to see here"
  51. - "&7Just the empty hand of {display-name}."
  52.  
  53. # Here you can choose which commands will the plugin attempt to parse. Console commands will all be ignored,
  54. # however player commands will be taken into consideration. To add a command, simply add an element to the list
  55. # bellow containing an alias (or name) for that command.
  56. # It is enough to add only ONE alias for each command, and the others will automatically be supported. However,
  57. # this is only available for plugin commands. If you're planning to add bukkit or mojang commands here, you'll have
  58. # to manually specify ALL aliases for those.
  59. commands:
  60. - "msg"
  61. # Here you can set when the players should see the no-permission message (defined in the 'Messages' section bellow).
  62. # 'normal' dictates whether the user should see the message when using the placeholder in normal chat, and 'command'
  63. # sets whether the user should see it when using the placeholder in a command.
  64. show-no-permission-message:
  65. normal: true
  66. command: false
  67. # Here you can set the limit on how many placeholders a user is allowed to use inside a message.
  68. # Allowing too many placeholders can result in client crashes.
  69. limit: 8
  70. # The cooldown, in seconds, between allowing players to send messages with items. Setting this to 0
  71. # will remove the cooldown entirely.
  72. cooldown: 60
  73.  
  74.  
  75. # Messages section. You can disable any of them by simply leaving them empty, like this: ""
  76. Messages:
  77. # The message users will get upon attempting to use the placeholder without any item in hand.
  78. # Only works if 'General.deny-if-no-item' is set to true!
  79. deny-message: "&c&lYou have no item in hand!"
  80. # The message you will get after reloading the plugin using /cireload.
  81. reload-success: "&b&lSuccessful reload!"
  82. # The message a player will get when attempting to send a message with more placeholders then the allowed limit.
  83. limit-message: "&c&lYou can only add 8 item placeholders per message!"
  84. # The message to display players when they can't display items in chat due to the cooldown
  85. cooldown-message: "&c&lYou can only use items in chat once a minute! You have {remaining} left!"
  86. # The no permission message to be showed to players who don't have the required permission to use the placeholder
  87. no-permission: "&c&lI'm sorry, but you are not allowed to use the placeholder in chat!"
  88. # All the fields bellow shold be translated in your own language. Those will be used in the {remaining} format of the cooldown message.
  89. # You should leave a space as a PREFIX as we will add a number in front of them
  90. seconds: " seconds"
  91. minutes: " minutes"
  92. hours: " hours"
  93. deny-name-too-long: "&c&lItem name is too long!"
  94.  
  95.  
  96. # Translations
  97. # Below you can find a set of default values for all items in Minecraft 1.8.
  98. Translations:
  99. ## Blocks ##
  100. STONE:
  101. 0: "Stone"
  102. 1: "Granite"
  103. 2: "Polished Granite"
  104. 3: "Diorite"
  105. 4: "Polished Diorite"
  106. 5: "Andesite"
  107. 6: "Polished Andesite"
  108. GRASS:
  109. 0: "Grass"
  110. DIRT:
  111. 0: "Dirt"
  112. 1: "Coarse Dirt"
  113. 2: "Podzol"
  114. COBBLESTONE:
  115. 0: "Cobblestone"
  116. WOOD:
  117. 0: "Oak Plank"
  118. 1: "Spruce Plank"
  119. 2: "Birch Plank"
  120. 3: "Jungle Plank"
  121. 4: "Acacia Plank"
  122. 5: "Dark Oak Plank"
  123. SAPLING:
  124. 0: "Oak Sapling"
  125. 1: "Spruce Sapling"
  126. 2: "Birch Sapling"
  127. 3: "Jungle Sapling"
  128. 4: "Acacia Sapling"
  129. 5: "Dark Oak Sapling"
  130. BEDROCK:
  131. 0: "Bedrock"
  132. WATER:
  133. 0: "Water"
  134. STATIONARY_WATER:
  135. 0: "Stationary Water"
  136. LAVA:
  137. 0: "Lava"
  138. STATIONARY_LAVA:
  139. 0: "Stationary Lava"
  140. SAND:
  141. 0: "Sand"
  142. 1: "Red Sand"
  143. GRAVEL:
  144. 0: "Gravel"
  145. GOLD_ORE:
  146. 0: "Gold Ore"
  147. IRON_ORE:
  148. 0: "Iron Ore"
  149. COAL_ORE:
  150. 0: "Coal Ore"
  151. LOG:
  152. 0: "Oak Log"
  153. 1: "Spruce Log"
  154. 2: "Birch Log"
  155. 3: "Jungle Log"
  156. LEAVES:
  157. 0: "Oak Leaves"
  158. 1: "Spruce Leaves"
  159. 2: "Birch Leaves"
  160. 3: "Jungle Leaves"
  161. SPONGE:
  162. 0: "Sponge"
  163. 1: "Wet Sponge"
  164. GLASS:
  165. 0: "Glass"
  166. LAPIS_ORE:
  167. 0: "Lapis Lazuli Ore"
  168. LAPIS_BLOCK:
  169. 0: "Lapis Lazuli Block"
  170. DISPENSER:
  171. 0: "Dispenser"
  172. SANDSTONE:
  173. 0: "Sandstone"
  174. 1: "Chiseled Sandstone"
  175. 2: "Smooth Sandstone"
  176. NOTE_BLOCK:
  177. 0: "Note Block"
  178. BED_BLOCK:
  179. 0: "Bed"
  180. POWERED_RAIL:
  181. 0: "Powered Rail"
  182. DETECTOR_RAIL:
  183. 0: "Detector Rail"
  184. PISTON_STICKY_BASE:
  185. 0: "Sticky Piston"
  186. WEB:
  187. 0: "Cobweb"
  188. LONG_GRASS:
  189. 0: "Dead Shrub"
  190. 1: "Tall Grass"
  191. 2: "Fern"
  192. DEAD_BUSH:
  193. 0: "Dead Bush"
  194. PISTON_BASE:
  195. 0: "Piston"
  196. PISTON_EXTENSION:
  197. 0: "Piston Extension"
  198. WOOL:
  199. 0: "White Wool"
  200. 1: "Orange Wool"
  201. 2: "Magenta Wool"
  202. 3: "Light Blue Wool"
  203. 4: "Yellow Wool"
  204. 5: "Lime Wool"
  205. 6: "Pink Wool"
  206. 7: "Gray Wool"
  207. 8: "Light Gray Wool"
  208. 9: "Cyan Wool"
  209. 10: "Purple Wool"
  210. 11: "Blue Wool"
  211. 12: "Brown Wool"
  212. 13: "Dark Green Wool"
  213. 14: "Red Wool"
  214. 15: "Black Wool"
  215. PISTON_MOVING_PIECE:
  216. 0: "Piston (moving piece)"
  217. YELLOW_FLOWER:
  218. 0: "Dandelion"
  219. RED_ROSE:
  220. 0: "Poppy"
  221. 1: "Blue Orchid"
  222. 2: "Allium"
  223. 3: "Azure Bluet"
  224. 4: "Red Tulip"
  225. 5: "Orange Tulip"
  226. 6: "White Tulip"
  227. 7: "Pink Tulip"
  228. 8: "Oxeye Daisy"
  229. BROWN_MUSHROOM:
  230. 0: "Brown Mushroom"
  231. RED_MUSHROOM:
  232. 0: "Red Mushroom"
  233. GOLD_BLOCK:
  234. 0: "Block of Gold"
  235. IRON_BLOCK:
  236. 0: "Block of Iron"
  237. DOUBLE_STEP:
  238. 0: "Stone Double Slab"
  239. 1: "Sandstone Double Slab"
  240. 2: "Wooden Double Slab"
  241. 3: "Cobblestone Double Slab"
  242. 4: "Brick Double Slab"
  243. 5: "Stone Brick Double Slab"
  244. 6: "Nether Brick Double Slab"
  245. 7: "Quartz Double Slab"
  246. 8: "Smooth Stone Double Slab"
  247. 9: "Smooth Sandstone Double Slab"
  248. STEP:
  249. 0: "Stone Slab"
  250. 1: "Sandstone Slab"
  251. 2: "Wooden Stone Slab"
  252. 3: "Cobblestone Slab"
  253. 4: "Brick Slab"
  254. 5: "Stone Brick Slab"
  255. 6: "Nether Brick Slab"
  256. 7: "Quartz Slab"
  257. BRICK:
  258. 0: "Bricks"
  259. TNT:
  260. 0: "TNT"
  261. BOOKSHELF:
  262. 0: "Bookshelf"
  263. MOSSY_COBBLESTONE:
  264. 0: "Moss Stone"
  265. OBSIDIAN:
  266. 0: "Obsidian"
  267. TORCH:
  268. 0: "Torch"
  269. FIRE:
  270. 0: "Fire"
  271. MOB_SPAWNER:
  272. 0: "Monster Spawner"
  273. 50: "Creeper Spawner"
  274. 51: "Skeleton Spawner"
  275. 52: "Spider Spawner"
  276. 53: "Giant Spawner"
  277. 54: "Zombie Spawner"
  278. 55: "Slime Spawner"
  279. 56: "Ghast Spawner"
  280. 57: "Zombie Pigman Spawner"
  281. 58: "Enderman Spawner"
  282. 59: "Cave Spider Spawner"
  283. 60: "Silverfish Spawner"
  284. 61: "Blaze Spawner"
  285. 62: "Magma Cube Spawner"
  286. 63: "Ender Dragon Spawner"
  287. 90: "Pig Spawner"
  288. 91: "Sheep Spawner"
  289. 92: "Cow Spawner"
  290. 93: "Chicken Spawner"
  291. 94: "Squid Spawner"
  292. 95: "Wolf Spawner"
  293. 96: "Mooshroom Spawner"
  294. 97: "Snow Golem Spawner"
  295. 98: "Ocelot Spawner"
  296. 99: "Iron Golem Spawner"
  297. 120: "Villager Spawner"
  298. WOOD_STAIRS:
  299. 0: "Oak Plank Stairs"
  300. CHEST:
  301. 0: "Chest"
  302. REDSTONE_WIRE:
  303. 0: "Redstone Wire"
  304. DIAMOND_ORE:
  305. 0: "Diamond Ore"
  306. DIAMOND_BLOCK:
  307. 0: "Block of Diamond"
  308. WORKBENCH:
  309. 0: "Crafting Table"
  310. CROPS:
  311. 0: "Wheat"
  312. SOIL:
  313. 0: "Farmland"
  314. FURNACE:
  315. 0: "Furnace"
  316. BURNING_FURNACE:
  317. 0: "Burning Furnace"
  318. SIGN_POST:
  319. 0: "Sign Post"
  320. WOODEN_DOOR:
  321. 0: "Wooden Door"
  322. LADDER:
  323. 0: "Ladder"
  324. RAILS:
  325. 0: "Rails"
  326. COBBLESTONE_STAIRS:
  327. 0: "Cobblestone Stairs"
  328. WALL_SIGN:
  329. 0: "Wall Sign"
  330. LEVER:
  331. 0: "Lever"
  332. STONE_PLATE:
  333. 0: "Stone Pressure Plate"
  334. IRON_DOOR_BLOCK:
  335. 0: "Iron Door"
  336. WOOD_PLATE:
  337. 0: "Wooden Pressure Plate"
  338. REDSTONE_ORE:
  339. 0: "Redstone Ore"
  340. GLOWING_REDSTONE_ORE:
  341. 0: "Glowing Redstone Ore"
  342. REDSTONE_TORCH_OFF:
  343. 0: "Redstone Torch (off)"
  344. REDSTONE_TORCH_ON:
  345. 0: "Redstone Torch (on)"
  346. STONE_BUTTON:
  347. 0: "Button"
  348. SNOW:
  349. 0: "Snow"
  350. ICE:
  351. 0: "Ice"
  352. SNOW_BLOCK:
  353. 0: "Snow Block"
  354. CACTUS:
  355. 0: "Cactus"
  356. CLAY:
  357. 0: "Clay Block"
  358. SUGAR_CANE_BLOCK:
  359. 0: "Sugar Cane"
  360. JUKEBOX:
  361. 0: "Jukebox"
  362. FENCE:
  363. 0: "Fence"
  364. PUMPKIN:
  365. 0: "Pumpkin"
  366. NETHERRACK:
  367. 0: "Netherrack"
  368. SOUL_SAND:
  369. 0: "Soul Sand"
  370. GLOWSTONE:
  371. 0: "Glowstone Block"
  372. PORTAL:
  373. 0: "Portal"
  374. JACK_O_LANTERN:
  375. 0: "Jack o'Lantern"
  376. CAKE_BLOCK:
  377. 0: "Cake Block"
  378. DIODE_BLOCK_OFF:
  379. 0: "Redstone Repeater (off)"
  380. DIODE_BLOCK_ON:
  381. 0: "Redstone Repeater (on)"
  382. LOCKED_CHEST:
  383. 0: "Locked Chest"
  384. STAINED_GLASS:
  385. 0: "White Stained Glass"
  386. 1: "Orange Stained Glass"
  387. 2: "Magenta Stained Glass"
  388. 3: "Light Blue Stained Glass"
  389. 4: "Yellow Stained Glass"
  390. 5: "Lime Stained Glass"
  391. 6: "Pink Stained Glass"
  392. 7: "Gray Stained Glass"
  393. 8: "Light Gray Stained Glass"
  394. 9: "Cyan Stained Glass"
  395. 10: "Purple Stained Glass"
  396. 11: "Blue Stained Glass"
  397. 12: "Brown Stained Glass"
  398. 13: "Green Stained Glass"
  399. 14: "Red Stained Glass"
  400. 15: "Black Stained Glass"
  401. TRAP_DOOR:
  402. 0: "Trapdoor"
  403. MONSTER_EGGS:
  404. 0: "Stone (Silverfish)"
  405. 1: "Cobblestone (Silverfish)"
  406. 2: "Stone Brick (Silverfish)"
  407. SMOOTH_BRICK:
  408. 0: "Stone Bricks"
  409. 1: "Mossy Stone Bricks"
  410. 2: "Cracked Stone Bricks"
  411. 3: "Circle Stone Bricks"
  412. HUGE_MUSHROOM_1:
  413. 0: "Huge Brown Mushroom"
  414. HUGE_MUSHROOM_2:
  415. 0: "Huge Red Mushroom"
  416. IRON_FENCE:
  417. 0: "Iron Bars"
  418. THIN_GLASS:
  419. 0: "Glass Pane"
  420. MELON_BLOCK:
  421. 0: "Melon"
  422. PUMPKIN_STEM:
  423. 0: "Pumpkin Stem"
  424. MELON_STEM:
  425. 0: "Melon Stem"
  426. VINE:
  427. 0: "Vines"
  428. FENCE_GATE:
  429. 0: "Fence Gate"
  430. BRICK_STAIRS:
  431. 0: "Brick Stairs"
  432. SMOOTH_STAIRS:
  433. 0: "Stone Brick Stairs"
  434. MYCEL:
  435. 0: "Mycelium"
  436. WATER_LILY:
  437. 0: "Lily Pad"
  438. NETHER_BRICK:
  439. 0: "Nether Brick"
  440. NETHER_FENCE:
  441. 0: "Nether Brick Fence"
  442. NETHER_BRICK_STAIRS:
  443. 0: "Nether Brick Stairs"
  444. NETHER_WARTS:
  445. 0: "Nether Wart"
  446. ENCHANTMENT_TABLE:
  447. 0: "Enchantment Table"
  448. BREWING_STAND:
  449. 0: "Brewing Stand"
  450. CAULDRON:
  451. 0: "Cauldron"
  452. ENDER_PORTAL:
  453. 0: "End Portal"
  454. ENDER_PORTAL_FRAME:
  455. 0: "End Portal Frame"
  456. ENDER_STONE:
  457. 0: "End Stone"
  458. DRAGON_EGG:
  459. 0: "Dragon Egg"
  460. REDSTONE_LAMP_OFF:
  461. 0: "Redstone Lamp (off)"
  462. REDSTONE_LAMP_ON:
  463. 0: "Redstone Lamp (on)"
  464. WOOD_DOUBLE_STEP:
  465. 0: "Oak Plank Double Slab"
  466. 1: "Pine Plank Double Slab"
  467. 2: "Birch Plank Double Slab"
  468. 3: "Jungle Plank Double Slab"
  469. 4: "Acacia Plank Double Slab"
  470. 5: "Dark Oak Plank Double Slab"
  471. WOOD_STEP:
  472. 0: "Oak Plank Slab"
  473. 1: "Pine Plank Slab"
  474. 2: "Birch Plank Slab"
  475. 3: "Jungle Plank Slab"
  476. 4: "Acacia Plank Slab"
  477. 5: "Dark Oak Plank Slab"
  478. COCOA:
  479. 0: "Cocoa Plant"
  480. SANDSTONE_STAIRS:
  481. 0: "Sandstone Stairs"
  482. EMERALD_ORE:
  483. 0: "Emerald Ore"
  484. ENDER_CHEST:
  485. 0: "Ender Chest"
  486. TRIPWIRE_HOOK:
  487. 0: "Tripwire Hook"
  488. TRIPWIRE:
  489. 0: "Tripwire"
  490. EMERALD_BLOCK:
  491. 0: "Block of Emerald"
  492. SPRUCE_WOOD_STAIRS:
  493. 0: "Pine Plank Stairs"
  494. BIRCH_WOOD_STAIRS:
  495. 0: "Birch Plank Stairs"
  496. JUNGLE_WOOD_STAIRS:
  497. 0: "Jungle Plank Stairs"
  498. COMMAND:
  499. 0: "Command Block"
  500. BEACON:
  501. 0: "Beacon"
  502. COBBLE_WALL:
  503. 0: "Cobblestone Wall"
  504. 1: "Mossy Cobblestone Wall"
  505. FLOWER_POT:
  506. 0: "Flower Pot"
  507. 1: "Rose Flower Pot"
  508. 2: "Dandelion Flower Pot"
  509. 3: "Oak Sapling Flower Pot"
  510. 4: "Spruce Sapling Flower Pot"
  511. 5: "Birch Sapling Flower Pot"
  512. 6: "Jungle Sapling Flower Pot"
  513. 7: "Red Mushroom Flower Pot"
  514. 8: "Brown Mushroom Flower Pot"
  515. 9: "Cactus Flower Pot"
  516. 10: "Dead Bush Flower Pot"
  517. 11: "Fern Flower Pot"
  518. CARROT:
  519. 0: "Carrots"
  520. POTATO:
  521. 0: "Potatoes"
  522. WOOD_BUTTON:
  523. 0: "Wooden Button"
  524. SKULL:
  525. 0: "Head"
  526. ANVIL:
  527. 0: "Anvil"
  528. 1: "Anvil"
  529. 2: "Anvil"
  530. 3: "Anvil"
  531. 4: "Slightly Damaged Anvil"
  532. 5: "Slightly Damaged Anvil"
  533. 6: "Slightly Damaged Anvil"
  534. 7: "Slightly Damaged Anvil"
  535. 8: "Very Damaged Anvil"
  536. 9: "Very Damaged Anvil"
  537. 10: "Very Damaged Anvil"
  538. 11: "Very Damaged Anvil"
  539. TRAPPED_CHEST:
  540. 0: "Trapped Chest"
  541. GOLD_PLATE:
  542. 0: "Weighted Pressure Plate (Light)"
  543. IRON_PLATE:
  544. 0: "Weighted Pressure Plate (Heavy)"
  545. REDSTONE_COMPARATOR_OFF:
  546. 0: "Redstone Comparator (inactive)"
  547. REDSTONE_COMPARATOR_ON:
  548. 0: "Redstone Comparator (active)"
  549. DAYLIGHT_DETECTOR:
  550. 0: "Daylight Sensor"
  551. REDSTONE_BLOCK:
  552. 0: "Block of Redstone"
  553. QUARTZ_ORE:
  554. 0: "Nether Quartz Ore"
  555. HOPPER:
  556. 0: "Hopper"
  557. QUARTZ_BLOCK:
  558. 0: "Block of Quartz"
  559. 1: "Chiseled Quartz Block"
  560. 2: "Pillar Quartz Block"
  561. 3: "Pillar Quartz Block"
  562. 4: "Pillar Quartz Block"
  563. QUARTZ_STAIRS:
  564. 0: "Quartz Stairs"
  565. ACTIVATOR_RAIL:
  566. 0: "Activator Rail"
  567. DROPPER:
  568. 0: "Dropper"
  569. STAINED_CLAY:
  570. 0: "White Stained Clay"
  571. 1: "Orange Stained Clay"
  572. 2: "Magenta Stained Clay"
  573. 3: "Light Blue Stained Clay"
  574. 4: "Yellow Stained Clay"
  575. 5: "Lime Stained Clay"
  576. 6: "Pink Stained Clay"
  577. 7: "Gray Stained Clay"
  578. 8: "Light Gray Stained Clay"
  579. 9: "Cyan Stained Clay"
  580. 10: "Purple Stained Clay"
  581. 11: "Blue Stained Clay"
  582. 12: "Brown Stained Clay"
  583. 13: "Green Stained Clay"
  584. 14: "Red Stained Clay"
  585. 15: "Black Stained Clay"
  586. STAINED_GLASS_PANE:
  587. 0: "White Stained Glass Pane"
  588. 1: "Orange Stained Glass Pane"
  589. 2: "Magenta Stained Glass Pane"
  590. 3: "Light Blue Stained Glass Pane"
  591. 4: "Yellow Stained Glass Pane"
  592. 5: "Lime Stained Glass Pane"
  593. 6: "Pink Stained Glass Pane"
  594. 7: "Gray Stained Glass Pane"
  595. 8: "Light Gray Stained Glass Pane"
  596. 9: "Cyan Stained Glass Pane"
  597. 10: "Purple Stained Glass Pane"
  598. 11: "Blue Stained Glass Pane"
  599. 12: "Brown Stained Glass Pane"
  600. 13: "Green Stained Glass Pane"
  601. 14: "Red Stained Glass Pane"
  602. 15: "Black Stained Glass Pane"
  603. LEAVES_2:
  604. 0: "Acacia Leaves"
  605. 1: "Dark Oak Leaves"
  606. ACACIA_STAIRS:
  607. 0: "Acacia Wood Stairs"
  608. DARK_OAK_STAIRS:
  609. 0: "Dark Oak Wood Stairs"
  610. LOG_2:
  611. 0: "Acacia Log"
  612. 1: "Dark Oak Log"
  613. HAY_BLOCK:
  614. 0: "Hay Bale"
  615. CARPET:
  616. 0: "White Carpet"
  617. 1: "Orange Carpet"
  618. 2: "Magenta Carpet"
  619. 3: "Light Blue Carpet"
  620. 4: "Yellow Carpet"
  621. 5: "Lime Carpet"
  622. 6: "Pink Carpet"
  623. 7: "Gray Carpet"
  624. 8: "Light Gray Carpet"
  625. 9: "Cyan Carpet"
  626. 10: "Purple Carpet"
  627. 11: "Blue Carpet"
  628. 12: "Brown Carpet"
  629. 13: "Green Carpet"
  630. 14: "Red Carpet"
  631. 15: "Black Carpet"
  632. HARD_CLAY:
  633. 0: "Hardened Clay"
  634. COAL_BLOCK:
  635. 0: "Block of Coal"
  636. PACKED_ICE:
  637. 0: "Packed Ice"
  638. DOUBLE_PLANT:
  639. 0: "Sunflower"
  640. 1: "Lilac"
  641. 2: "Double Tallgrass"
  642. 3: "Large Fern"
  643. 4: "Rose Bush"
  644. 5: "Peony"
  645. 8: "Large Plant Top"
  646. 9: "Large Plant Top"
  647. 10: "Large Plant Top"
  648. 11: "Large Plant Top"
  649. 12: "Large Plant Top"
  650. 13: "Large Plant Top"
  651. ## Items ##"
  652. IRON_SPADE:
  653. 0: "Iron Shovel"
  654. IRON_PICKAXE:
  655. 0: "Iron Pickaxe"
  656. IRON_AXE:
  657. 0: "Iron Axe"
  658. FLINT_AND_STEEL:
  659. 0: "Flint and Steel"
  660. APPLE:
  661. 0: "Red Apple"
  662. BOW:
  663. 0: "Bow"
  664. ARROW:
  665. 0: "Arrow"
  666. COAL:
  667. 0: "Coal"
  668. 1: "Charcoal"
  669. DIAMOND:
  670. 0: "Diamond"
  671. IRON_INGOT:
  672. 0: "Iron Ingot"
  673. GOLD_INGOT:
  674. 0: "Gold Ingot"
  675. IRON_SWORD:
  676. 0: "Iron Sword"
  677. WOOD_SWORD:
  678. 0: "Wooden Sword"
  679. WOOD_SPADE:
  680. 0: "Wooden Shovel"
  681. WOOD_PICKAXE:
  682. 0: "Wooden Pickaxe"
  683. WOOD_AXE:
  684. 0: "Wooden Axe"
  685. STONE_SWORD:
  686. 0: "Stone Sword"
  687. STONE_SPADE:
  688. 0: "Stone Shovel"
  689. STONE_PICKAXE:
  690. 0: "Stone Pickaxe"
  691. STONE_AXE:
  692. 0: "Stone Axe"
  693. DIAMOND_SWORD:
  694. 0: "Diamond Sword"
  695. DIAMOND_SPADE:
  696. 0: "Diamond Shovel"
  697. DIAMOND_PICKAXE:
  698. 0: "Diamond Pickaxe"
  699. DIAMOND_AXE:
  700. 0: "Diamond Axe"
  701. STICK:
  702. 0: "Stick"
  703. BOWL:
  704. 0: "Bowl"
  705. MUSHROOM_SOUP:
  706. 0: "Mushroom Soup"
  707. GOLD_SWORD:
  708. 0: "Gold Sword"
  709. GOLD_SPADE:
  710. 0: "Gold Shovel"
  711. GOLD_PICKAXE:
  712. 0: "Gold Pickaxe"
  713. GOLD_AXE:
  714. 0: "Gold Axe"
  715. STRING:
  716. 0: "String"
  717. FEATHER:
  718. 0: "Feather"
  719. SULPHUR:
  720. 0: "Gunpowder"
  721. WOOD_HOE:
  722. 0: "Wooden Hoe"
  723. STONE_HOE:
  724. 0: "Stone Hoe"
  725. IRON_HOE:
  726. 0: "Iron Hoe"
  727. DIAMOND_HOE:
  728. 0: "Diamond Hoe"
  729. GOLD_HOE:
  730. 0: "Gold Hoe"
  731. SEEDS:
  732. 0: "Seeds"
  733. WHEAT:
  734. 0: "Wheat"
  735. BREAD:
  736. 0: "Bread"
  737. LEATHER_HELMET:
  738. 0: "Leather Cap"
  739. LEATHER_CHESTPLATE:
  740. 0: "Leather Tunic"
  741. LEATHER_LEGGINGS:
  742. 0: "Leather Pants"
  743. LEATHER_BOOTS:
  744. 0: "Leather Boots"
  745. CHAINMAIL_HELMET:
  746. 0: "Chain Helmet"
  747. CHAINMAIL_CHESTPLATE:
  748. 0: "Chain Chestplate"
  749. CHAINMAIL_LEGGINGS:
  750. 0: "Chain Leggings"
  751. CHAINMAIL_BOOTS:
  752. 0: "Chain Boots"
  753. IRON_HELMET:
  754. 0: "Iron Helmet"
  755. IRON_CHESTPLATE:
  756. 0: "Iron Chestplate"
  757. IRON_LEGGINGS:
  758. 0: "Iron Leggings"
  759. IRON_BOOTS:
  760. 0: "Iron Boots"
  761. DIAMOND_HELMET:
  762. 0: "Diamond Helmet"
  763. DIAMOND_CHESTPLATE:
  764. 0: "Diamond Chestplate"
  765. DIAMOND_LEGGINGS:
  766. 0: "Diamond Leggings"
  767. DIAMOND_BOOTS:
  768. 0: "Diamond Boots"
  769. GOLD_HELMET:
  770. 0: "Gold Helmet"
  771. GOLD_CHESTPLATE:
  772. 0: "Gold Chestplate"
  773. GOLD_LEGGINGS:
  774. 0: "Gold Leggings"
  775. GOLD_BOOTS:
  776. 0: "Gold Boots"
  777. FLINT:
  778. 0: "Flint"
  779. PORK:
  780. 0: "Raw Porkchop"
  781. GRILLED_PORK:
  782. 0: "Cooked Porkchop"
  783. PAINTING:
  784. 0: "Painting"
  785. GOLDEN_APPLE:
  786. 0: "Golden Apple"
  787. 1: "Super Golden Apple"
  788. SIGN:
  789. 0: "Sign"
  790. WOOD_DOOR:
  791. 0: "Wooden Door"
  792. BUCKET:
  793. 0: "Empty Bucket"
  794. WATER_BUCKET:
  795. 0: "Water Bucket"
  796. LAVA_BUCKET:
  797. 0: "Lava Bucket"
  798. MINECART:
  799. 0: "Minecart"
  800. SADDLE:
  801. 0: "Saddle"
  802. IRON_DOOR:
  803. 0: "Iron Door"
  804. REDSTONE:
  805. 0: "Redstone Dust"
  806. SNOW_BALL:
  807. 0: "Snowball"
  808. BOAT:
  809. 0: "Boat"
  810. LEATHER:
  811. 0: "Leather"
  812. MILK_BUCKET:
  813. 0: "Milk Bucket"
  814. CLAY_BRICK:
  815. 0: "Clay Brick"
  816. CLAY_BALL:
  817. 0: "Clay"
  818. SUGAR_CANE:
  819. 0: "Sugar Cane"
  820. PAPER:
  821. 0: "Paper"
  822. BOOK:
  823. 0: "Book"
  824. SLIME_BALL:
  825. 0: "Slimeball"
  826. STORAGE_MINECART:
  827. 0: "Minecart with Chest"
  828. POWERED_MINECART:
  829. 0: "Minecart with Furnace"
  830. EGG:
  831. 0: "Chicken Egg"
  832. COMPASS:
  833. 0: "Compass"
  834. FISHING_ROD:
  835. 0: "Fishing Rod"
  836. WATCH:
  837. 0: "Clock"
  838. GLOWSTONE_DUST:
  839. 0: "Glowstone Dust"
  840. RAW_FISH:
  841. 0: "Raw Fish"
  842. 1: "Raw Salmon"
  843. 2: "Clownfish"
  844. 3: "Pufferfish"
  845. COOKED_FISH:
  846. 0: "Cooked Salmon"
  847. INK_SACK:
  848. 0: "Ink Sac"
  849. 1: "Rose Red"
  850. 2: "Cactus Green"
  851. 3: "Cocoa Beans"
  852. 4: "Lapis Lazuli"
  853. 5: "Purple Dye"
  854. 6: "Cyan Dye"
  855. 7: "Light Gray Dye"
  856. 8: "Gray Dye"
  857. 9: "Pink Dye"
  858. 10: "Lime Dye"
  859. 11: "Dandelion Yellow"
  860. 12: "Light Blue Dye"
  861. 13: "Magenta Dye"
  862. 14: "Orange Dye"
  863. 15: "Bone Meal"
  864. BONE:
  865. 0: "Bone"
  866. SUGAR:
  867. 0: "Sugar"
  868. CAKE:
  869. 0: "Cake"
  870. BED:
  871. 0: "Bed"
  872. DIODE:
  873. 0: "Redstone Repeater"
  874. COOKIE:
  875. 0: "Cookie"
  876. MAP:
  877. 0: "Map"
  878. SHEARS:
  879. 0: "Shears"
  880. MELON:
  881. 0: "Melon Slice"
  882. PUMPKIN_SEEDS:
  883. 0: "Pumpkin Seeds"
  884. MELON_SEEDS:
  885. 0: "Melon Seeds"
  886. RAW_BEEF:
  887. 0: "Raw Beef"
  888. COOKED_BEEF:
  889. 0: "Steak"
  890. RAW_CHICKEN:
  891. 0: "Raw Chicken"
  892. COOKED_CHICKEN:
  893. 0: "Cooked Chicken"
  894. ROTTEN_FLESH:
  895. 0: "Rotten Flesh"
  896. ENDER_PEARL:
  897. 0: "Ender Pearl"
  898. BLAZE_ROD:
  899. 0: "Blaze Rod"
  900. GHAST_TEAR:
  901. 0: "Ghast Tear"
  902. GOLD_NUGGET:
  903. 0: "Gold Nugget"
  904. NETHER_STALK:
  905. 0: "Nether Wart"
  906. POTION:
  907. # Regular Potions"
  908. 16: "Awkward Potion"
  909. 8192: "Mundane Potion"
  910. 8203: "Potion of Leaping (3:00)"
  911. 8235: "Potion of Leaping II (1:30)"
  912. 8267: "Potion of Leaping (8:00)"
  913. 8193: "Potion of Regeneration (0:45)"
  914. 8257: "Potion of Regeneration (2:00)"
  915. 8225: "Potion of Regeneration II (0:22)"
  916. 8289: "Potion of Regeneration II (1:00)"
  917. 8194: "Potion of Swiftness (3:00)"
  918. 8258: "Potion of Swiftness (8:00)"
  919. 8226: "Potion of Swiftness II (1:30)"
  920. 8195: "Potion of Fire Resistance (3:00)"
  921. 8227: "Potion of Fire Resistance (3:00)"
  922. 8259: "Potion of Fire Resistance (8:00)"
  923. 8196: "Potion of Poison (0:45)"
  924. 8260: "Potion of Poison (2:00)"
  925. 8228: "Potion of Poison II (0:22)"
  926. 8292: "Potion of Poison II (1:00)"
  927. 8197: "Potion of Healing"
  928. 8229: "Potion of Healing II"
  929. 8198: "Potion of Night Vision (3:00)"
  930. 8262: "Potion of Night Vision (8:00)"
  931. 8200: "Potion of Weakness (1:30)"
  932. 8264: "Potion of Weakness (4:00)"
  933. 8201: "Potion of Strength (3:00)"
  934. 8265: "Potion of Strength (8:00)"
  935. 8233: "Potion of Strength II (1:30)"
  936. 8297: "Potion of Strength II (4:00)"
  937. 8202: "Potion of Slowness (1:30)"
  938. 8266: "Potion of Slowness (4:00)"
  939. 8204: "Potion of Harming"
  940. 8236: "Potion of Harming II"
  941. 8205: "Potion of Water Breathing (3:00)"
  942. 8269: "Potion of Water Breathing (8:00)"
  943. 8206: "Potion of Invisibility (3:00)"
  944. 8270: "Potion of Invisibility (8:00)"
  945. # Splash Potions"
  946. 16385: "Splash Potion of Regeneration"
  947. 16417: "Splash Potion of Regeneration II"
  948. 16449: "Extended Splash Potion of Regeneration"
  949. 16386: "Splash Potion of Swiftness"
  950. 16418: "Splash Potion of Swiftness II"
  951. 16450: "Extended Splash Potion of Swiftness"
  952. 16387: "Splash Potion of Fire Resistance"
  953. 16419: "Splash Potion of Fire Resistance"
  954. 16451: "Extended Splash Potion of Fire Resistance"
  955. 16388: "Splash Potion of Poison"
  956. 16420: "Splash Potion of Poison II"
  957. 16452: "Extended Splash Potion of Poison"
  958. 16389: "Splash Potion of Instant Health"
  959. 16421: "Splash Potion of Instant Health II"
  960. 16453: "Splash Potion of Instant Health"
  961. 16390: "Splash Potion of Night Vision"
  962. 16422: "Splash Potion of Night Vision"
  963. 16454: "Extended Splash Potion of Night Vision"
  964. 16392: "Splash Potion of Weakness"
  965. 16424: "Splash Potion of Weakness II"
  966. 16456: "Extended Splash Potion of Weakness"
  967. 16393: "Splash Potion of Strength"
  968. 16425: "Splash Potion of Strength II"
  969. 16457: "Extended Splash Potion of Strength"
  970. 16394: "Splash Potion of Slowness"
  971. 16426: "Splash Potion of Slowness II"
  972. 16458: "Extended Splash Potion of Slowness"
  973. 16395: "Splash Potion of Leaping"
  974. 16427: "Splash Potion of Leaping II"
  975. 16459: "Extended Splash Potion of Leaping"
  976. 16396: "Splash Potion of Harming"
  977. 16428: "Splash Potion of Harming II"
  978. 16460: "Extended Splash Potion of Harming"
  979. 16397: "Splash Potion of Water Breathing"
  980. 16429: "Splash Potion of Water Breathing"
  981. 16461: "Extended Splash Potion of Water Breathing"
  982. 16398: "Splash Potion of Invisibility"
  983. 16430: "Splash Potion of Invisibility"
  984. 16462: "Extended Splash Potion of Invisibility"
  985. GLASS_BOTTLE:
  986. 0: "Glass Bottle"
  987. SPIDER_EYE:
  988. 0: "Spider Eye"
  989. FERMENTED_SPIDER_EYE:
  990. 0: "Fermented Spider Eye"
  991. BLAZE_POWDER:
  992. 0: "Blaze Powder"
  993. MAGMA_CREAM:
  994. 0: "Magma Cream"
  995. BREWING_STAND_ITEM:
  996. 0: "Brewing Stand"
  997. CAULDRON_ITEM:
  998. 0: "Cauldron"
  999. EYE_OF_ENDER:
  1000. 0: "Eye of Ender"
  1001. SPECKLED_MELON:
  1002. 0: "Glistering Melon"
  1003. MONSTER_EGG:
  1004. 0: "Spawn Egg"
  1005. 50: "Creeper Spawn Egg"
  1006. 51: "Skeleton Spawn Egg"
  1007. 52: "Spider Spawn Egg"
  1008. 54: "Zombie Spawn Egg"
  1009. 55: "Slime Spawn Egg"
  1010. 56: "Ghast Spawn Egg"
  1011. 57: "Zombie Pigman Spawn Egg"
  1012. 58: "Enderman Spawn Egg"
  1013. 59: "Cave Spider Spawn Egg"
  1014. 60: "Silverfish Spawn Egg"
  1015. 61: "Blaze Spawn Egg"
  1016. 62: "Magma Cube Spawn Egg"
  1017. 63: "Ender Dragon Spawn Egg"
  1018. 64: "Wither Spawn Egg"
  1019. 65: "Bat Spawn Egg"
  1020. 66: "Witch Spawn Egg"
  1021. 90: "Pig Spawn Egg"
  1022. 91: "Sheep Spawn Egg"
  1023. 92: "Cow Spawn Egg"
  1024. 93: "Chicken Spawn Egg"
  1025. 94: "Squid Spawn Egg"
  1026. 95: "Wolf Spawn Egg"
  1027. 96: "Mooshroom Spawn Egg"
  1028. 98: "Ocelot Spawn Egg"
  1029. 99: "Iron Golem Spawn Egg"
  1030. 100: "Horse Spawn Egg"
  1031. 120: "Villager Spawn Egg"
  1032. EXP_BOTTLE:
  1033. 0: "Bottle o' Enchanting"
  1034. FIREBALL:
  1035. 0: "Fire Charge"
  1036. WRITEABLE_BOOK:
  1037. 0: "Book and Quill"
  1038. WRITTEN_BOOK:
  1039. 0: "Written Book"
  1040. EMERALD:
  1041. 0: "Emerald"
  1042. ITEM_FRAME:
  1043. 0: "Item Frame"
  1044. FLOWER_POT_ITEM:
  1045. 0: "Flower Pot"
  1046. CARROT_ITEM:
  1047. 0: "Carrot"
  1048. POTATO_ITEM:
  1049. 0: "Potato"
  1050. BAKED_POTATO:
  1051. 0: "Baked Potato"
  1052. 1: "Baked Potato"
  1053. POISONOUS_POTATO:
  1054. 0: "Poisonous Potato"
  1055. EMPTY_MAP:
  1056. 0: "Empty Map"
  1057. GOLDEN_CARROT:
  1058. 0: "Golden Carrot"
  1059. SKULL_ITEM:
  1060. 0: "Skeleton Head"
  1061. 1: "Wither Skeleton Head"
  1062. 2: "Zombie Head"
  1063. 3: "Human Head"
  1064. 4: "Creeper Head"
  1065. CARROT_STICK:
  1066. 0: "Carrot on a Stick"
  1067. NETHER_STAR:
  1068. 0: "Nether Star"
  1069. PUMPKIN_PIE:
  1070. 0: "Pumpkin Pie"
  1071. FIREWORK:
  1072. 0: "Firework Rocket"
  1073. FIREWORK_CHARGE:
  1074. 0: "Firework Star"
  1075. ENCHANTED_BOOK:
  1076. 0: "Enchanted Book"
  1077. REDSTONE_COMPARATOR:
  1078. 0: "Redstone Comparator"
  1079. NETHER_BRICK_ITEM:
  1080. 0: "Nether Brick"
  1081. QUARTZ:
  1082. 0: "Nether Quartz"
  1083. EXPLOSIVE_MINECART:
  1084. 0: "Minecart with TNT"
  1085. HOPPER_MINECART:
  1086. 0: "Minecart with Hopper"
  1087. IRON_BARDING:
  1088. 0: "Iron Horse Armor"
  1089. GOLD_BARDING:
  1090. 0: "Gold Horse Armor"
  1091. DIAMOND_BARDING:
  1092. 0: "Diamond Horse Armor"
  1093. LEASH:
  1094. 0: "Lead"
  1095. NAME_TAG:
  1096. 0: "Name Tag"
  1097. COMMAND_MINECART:
  1098. 0: "Minecart with Command Block"
  1099. GOLD_RECORD:
  1100. 0: "13 Disc"
  1101. GREEN_RECORD:
  1102. 0: "Cat Disc"
  1103. RECORD_3:
  1104. 0: "Blocks Disc"
  1105. RECORD_4:
  1106. 0: "Chirp Disc"
  1107. RECORD_5:
  1108. 0: "Far Disc"
  1109. RECORD_6:
  1110. 0: "Mall Disc"
  1111. RECORD_7:
  1112. 0: "Mellohi Disc"
  1113. RECORD_8:
  1114. 0: "Stal Disc"
  1115. RECORD_9:
  1116. 0: "Strad Disc"
  1117. RECORD_10:
  1118. 0: "Ward Disc"
  1119. RECORD_11:
  1120. 0: "11 Disc"
  1121. RECORD_12:
  1122. 0: "Wait Disc"
  1123. # 1.8 items
  1124. SLIME_BLOCK:
  1125. 0: "Slime Block"
  1126. BARRIER:
  1127. 0: "Barrier"
  1128. STANDING_BANNER:
  1129. 0: "Banner"
  1130. WALL_BANNER:
  1131. 0: "Banner"
  1132. IRON_TRAPDOOR:
  1133. 0: "Iron Trapdoor"
  1134. PRISMARINE:
  1135. 0: "Prismarine"
  1136. SEA_LANTERN:
  1137. 0: "Sea Lantern"
  1138. DAYLIGHT_DETECTOR_INVERTED:
  1139. 0: "Daylight Sensor"
  1140. RED_SANDSTONE:
  1141. 0: "Red Sandstone"
  1142. RED_SANDSTONE_STAIRS:
  1143. 0: "Red Sandstone Stairs"
  1144. DOUBLE_STONE_SLAB2:
  1145. 0: "Double Red Sandstone Slab"
  1146. STONE_SLAB2:
  1147. 0: "Red Sandstone Slab"
  1148. SPRUCE_FENCE_GATE:
  1149. 0: "Spruce Fence Gate"
  1150. BIRCH_FENCE_GATE:
  1151. 0: "Birch Fence Gate"
  1152. JUNGLE_FENCE_GATE:
  1153. 0: "Jungle Fence Gate"
  1154. DARK_OAK_FENCE_GATE:
  1155. 0: "Dark Oak Fence Gate"
  1156. ACACIA_FENCE_GATE:
  1157. 0: "Acacia Fence Gate"
  1158. SPRUCE_FENCE:
  1159. 0: "Spruce Fence"
  1160. BIRCH_FENCE:
  1161. 0: "Birch Fence"
  1162. JUNGLE_FENCE:
  1163. 0: "Jungle Fence"
  1164. DARK_OAK_FENCE:
  1165. 0: "Dark Oak Fence"
  1166. ACACIA_FENCE:
  1167. 0: "Acacia Fence"
  1168. SPRUCE_DOOR:
  1169. 0: "Spruce Door"
  1170. BIRCH_DOOR:
  1171. 0: "Birch Door"
  1172. JUNGLE_DOOR:
  1173. 0: "Jungle Door"
  1174. ACACIA_DOOR:
  1175. 0: "Acacia Door"
  1176. DARK_OAK_DOOR:
  1177. 0: "Dark Oak Door"
  1178. PRISMARINE_SHARD:
  1179. 0: "Prismarine Shard"
  1180. PRISMARINE_CRYSTALS:
  1181. 0: "Prismarine Crystals"
  1182. RABBIT:
  1183. 0: "Raw Rabbit"
  1184. COOKED_RABBIT:
  1185. 0: "Cooked Rabbit"
  1186. RABBIT_STEW:
  1187. 0: "Rabbit Stew"
  1188. RABBIT_FOOT:
  1189. 0: "Rabbit's Foot"
  1190. RABBIT_HIDE:
  1191. 0: "Rabbit Hide"
  1192. ARMOR_STAND:
  1193. 0: "Armor Stand"
  1194. MUTTON:
  1195. 0: "Raw Mutton"
  1196. COOKED_MUTTON:
  1197. 0: "Cooked Mutton"
  1198. BANNER:
  1199. 0: "Banner"
  1200. SPRUCE_DOOR_ITEM:
  1201. 0: "Spruce Door"
  1202. BIRCH_DOOR_ITEM:
  1203. 0: "Birch Door"
  1204. JUNGLE_DOOR_ITEM:
  1205. 0: "Jungle Door"
  1206. ACACIA_DOOR_ITEM:
  1207. 0: "Acacia Door"
  1208. DARK_OAK_DOOR_ITEM:
  1209. 0: "Dark Oak Door"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement