Advertisement
CatRabbit499

ChatItem Config

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