Guest User

mc

a guest
Mar 30th, 2020
1,187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 17.01 KB | None | 0 0
  1. allowPublish: true
  2. commands:
  3.   skiphelp: true
  4.   help: '&a/mc &c{name} &3{arguments} &6(&7{help}&6)'
  5.   show-default-aliases: true
  6.   nopermission: '&cSem permissão'
  7. command:
  8.   aliases:
  9.  - mc
  10.   marketall:
  11.     aliases:
  12.    - tudo
  13.     permission: none
  14.   my:
  15.     aliases:
  16.    - meu
  17.     description: Ver seus vendidos, não vendidos, histórico, etc
  18.     argumentsHelp: ''
  19.   listings:
  20.     aliases:
  21.    - inspecionar
  22.     description: Ver os itens não vendidos de outros jogadores (e remover se necessário)
  23.     argumentsHelp: <player_name|player_uuid>
  24.   publish:
  25.     aliases:
  26.    - vender
  27.     description: Publicar um item no Mercado
  28.     argumentsHelp: <price>
  29.   purge:
  30.     aliases:
  31.    - apagar
  32.     description: Apagar tudo
  33.     argumentsHelp: <argument-name> [argument-value]
  34.   search:
  35.     aliases:
  36.    - buscar
  37.     description: Menu de procura de itens
  38.     argumentsHelp: '[all|id|categories|name|lore|player] [name|lore|player-name]'
  39.     arguments:
  40.       all: tudo
  41.       id: id
  42.       categories: categorias
  43.       name: nome
  44.       lore: descrição
  45.       player: jogador
  46.   select:
  47.     aliases:
  48.    - selecionar
  49.     description: 'Same args as purge, but it show the info instead on remove: http://marketplacedocs.readthedocs.io/en/latest/commands/purge.html'
  50.     argumentsHelp: <argument-name> [argument-value]...
  51.   limits:
  52.     aliases:
  53.    - limites
  54.     description: Manage player limits
  55.     argumentsHelp: <set|get|increment|decrement> <player> [slots]
  56.   reload:
  57.     aliases:
  58.    - reload
  59.     description: Recarregado
  60.     argumentsHelp: ''
  61.   help:
  62.     aliases:
  63.    - ajuda
  64.     description: Display this menu
  65.     argumentsHelp: ''
  66.   setpin:
  67.     aliases:
  68.    - webpin
  69.     description: Set the pin for login through the web client
  70.     argumentsHelp: <new-pin>
  71.   cancel:
  72.     aliases:
  73.    - borrow
  74.     description: Cancel all the listings (this is an experimental/migration command)
  75.     argumentsHelp: --all
  76.   wallet:
  77.     aliases:
  78.    - webmoney
  79.     description: Adds money to your web account, this allows you yo purchase items through the web system
  80.     argumentsHelp: <deposit|withdraw|check> [player|amount] [amount]
  81.     arguments:
  82.       deposit: deposit
  83.       withdraw: withdraw
  84.       check: check
  85.   migrate:
  86.     aliases:
  87.    - mig
  88.     description: Migrate from other plugins
  89.     argumentsHelp: <database-type>
  90. database:
  91.   mysql:
  92.     hostname:
  93.     username:
  94.     password:
  95.     port: '3306'
  96.     database:
  97.   sqlite:
  98.     file: marketplace.db
  99.   type: sqlite
  100.   tables:
  101.     catalog: catalog
  102.     limit: limit
  103.     webaccounts: webaccounts
  104.     sync_info: syncinfo
  105. webmarket:
  106.   enabled: false
  107.   pin:
  108.     empty: '&cPlease insert a pin (All web sessions have been closed)'
  109.     done: '&aYour pin has been established'
  110.     error: '&cUnexpected error while changing your pin, please contact an administrator'
  111.   account:
  112.     invalid: '&cSorry but this account doesn''t exists, please use /mp setpin <pin>
  113.      to set a pin and create the account'
  114.     money: '&7Wallet Money:&6 {money}$'
  115.     deposit: '&aYou just deposited &6${money}&a in your wallet'
  116.     withdraw: '&aYou just withdraw &6${money}&a from your wallet'
  117.     error: '&cUnexpected error while modifying your account data, please contact an
  118.       administrator'
  119.     allow_withdraw: false
  120. limits:
  121.   default: -1
  122.   reach: '&cVocê chegou ao limite de &6{number}&c anúncios ao mesmo tempo!'
  123.   mode: permissions
  124.   multiple: stack
  125.   permissions:
  126.  - marketplace.limits.vip=3
  127.   - marketplace.limits.donor=2
  128. logs:
  129.   console: true
  130.   file: true
  131.   publish: true
  132.   remove_listing: true
  133.   claim: true
  134.   purchase: true
  135. publish:
  136.   price:
  137.     min: 1
  138.     max: 2000000000
  139.     error: '&cEsse preço está acima do limite!'
  140.   invaliditem: '&cItem inválido'
  141.   done: '&aVocê publicou o item &6{item} &apor &7${price}&a no Mercado'
  142.   claim: '&aVocê recebeu o valor &6${price}&a de &6{item}'
  143.   bulkclaim: '&aVocê recebeu o valor de &6{amount}&a de itens vendidos e recebeu &6{price}$'
  144.   bulkclaim_enabled: true
  145.   error: '&cErro ao publicar seu item, contate um administrador e informe o horário
  146.     atual'
  147. messages:
  148.   header: '&7'
  149.   invalidnumber: '&cNúmero inválido'
  150.   invalidplayer: '&cJogador inválido'
  151.   dropped: '&eAlguns itens foram dropados!'
  152. menu:
  153.   nextpage: '&7Próx. página'
  154.   previouspage: '&7Pág. anterior'
  155.   page:
  156.     title: '&7Página: &6{page}/{pages}'
  157.     lore:
  158.    - '&6{items}&7 item/s'
  159.   marketplace:
  160.     title: '&9Mercado (&6{search}&9)'
  161.     filters:
  162.       title: '&7Filtros...'
  163.     item:
  164.    - '&6---------'
  165.     - '&dVendedor: &6{seller}'
  166.     - '&cPublicado: &6{published}'
  167.     - '&9Expiração: &6{expires}'
  168.     - '&7Preço: &6${price}'
  169.     - '&8Por Item: &6${per_item}'
  170.     - '&3Taxa: &6${tax} &7({percent}%)'
  171.     - '&aTotal: &6${total}'
  172.     back: '&bVoltar'
  173.     loading: '&6Carregando...'
  174.     gotomy: '&6Seus Anúncios'
  175.     reference:
  176.       ingame: '&6No jogo'
  177.       webmarket: '&3Web'
  178.     order:
  179.       price:
  180.         name: '&7Ordenar por: &6Preço'
  181.         asc: '&3Menor ao maior'
  182.         desc: '&3Maior ao menor'
  183.       item_amount:
  184.         name: '&7Ordenar por: &7Quantidade'
  185.         asc: '&3Menos a mais'
  186.         desc: '&3Mais a menos'
  187.       publish_date:
  188.         name: '&7Ordenar por: &2Tempo'
  189.         asc: '&3Antigos a novos'
  190.         desc: '&3Novos a antigos'
  191.     claimall: '&6Pegar Todos'
  192.     asc: '&3Ascendente'
  193.     desc: '&3Descendente'
  194.   main:
  195.     title: '&9Mercado'
  196.     idsearch: '&eBuscar por ID'
  197.     namesearch: '&eBuscar por Nome'
  198.     loresearch: '&eBuscar por Descrição'
  199.     allsearch: '&eBuscar todo o Mercado'
  200.     categories: '&eBuscar Categorias'
  201.   categories:
  202.     title: '&eSelecione uma categoria'
  203.   listings:
  204.     deliveries: '&5Entregas ({amount})'
  205.     gotosearch: '&7Menu de Busca'
  206.     unclaimed: '&dEsperando saque'
  207.     unbought: '&cNão comprados'
  208.     cancelled: '&cCancelados/Expirados'
  209.     removed: '&aVocê removeu o seu anúncio &6{listing}!'
  210.     history:
  211.       purchases: '&3Histórico de Compras'
  212.       purchasesLore:
  213.      - '&6---------'
  214.       - '&7Preço:&6 ${price}'
  215.       - '&7Vendedor:&6 {seller}'
  216.       - '&7Publicado:&6 {published}'
  217.       - '&7Comprado:&6 {purchased}'
  218.       - '&7Comprado em:&6 {reference}'
  219.       sales: '&9Histórico de Vendas'
  220.       salesLore:
  221.      - '&6---------'
  222.       - '&7Preço:&6 ${price}'
  223.       - '&7Buyer:&6 {buyer}'
  224.       - '&7Publicado:&6 {published}'
  225.       - '&7Comprado:&6 {purchased}'
  226.     claims:
  227.       title: '&9Menu de Reivindicação'
  228.       claimlore:
  229.      - '&6---------'
  230.       - '&7Lucro:&6 ${price}'
  231.       - '&7Taxa:&6 ${tax} &7({percent}%)'
  232.       - '&7Total: &6{total}'
  233.       - '&7Comprador:&6 {buyer}'
  234.       - '&7Comprado:&6 {bought}'
  235.       - '&7Publicado:&6 {published}'
  236.       - '&7Comprado em:&6 {reference}'
  237.   deliveries:
  238.     claimed: '&7Você solicitou uma entrega!'
  239.     lore:
  240.    - '&6---------'
  241.     - '&7Preço:&6 ${price}'
  242.     - '&7Vendedor:&6 {seller}'
  243.     - '&7Publicado:&6 {published}'
  244.     - '&7Comprado:&6 {purchased}'
  245.     title: '&6Suas Entregas'
  246.   confirm:
  247.     title: '&aConfirmar Compra'
  248.     cancel: '&cCancelar'
  249.     seller: '&7Vendedor:&6 {seller}'
  250.     price: '&7Preço:&6 ${price}'
  251.     confirm:
  252.       name: '&aComprar'
  253.       lore:
  254.      - '&7Seu Dinheiro:&6 ${money}'
  255.       - '&7Depois da Compra:&6 ${money-after}'
  256.   idsearch:
  257.     title: '&3Buscar por ID'
  258.     info:
  259.    - '&dClique para pesquisar &6{name}&d no Mercado'
  260.   my:
  261.     title: '&5Meus Anúncios'
  262.   items:
  263.     background:
  264.       item: GRAY_STAINED_GLASS_PANE
  265.       subid: 7
  266.       name: '&0'
  267.     changemenu:
  268.       item: ARROW
  269.     purchasesHistory:
  270.       item: ENCHANTED_BOOK
  271.     unbought:
  272.       item: NAME_TAG
  273.     deliveries:
  274.       item: MINECART
  275.     cancelled:
  276.       item: BARRIER
  277.     salesHistory:
  278.       item: BOOK
  279.     claimNormal:
  280.       item: GOLDEN_APPLE
  281.     claimNotification:
  282.       item: GOLDEN_APPLE
  283.       subid: 1
  284.     searchName:
  285.       item: NAME_TAG
  286.     searchID:
  287.       item: APPLE
  288.     searchCategories:
  289.       item: BOOKSHELF
  290.     searchLore:
  291.       item: BOOK
  292.     searchAll:
  293.       item: GOLDEN_APPLE
  294.     back:
  295.       item: REDSTONE
  296.     confirmCancel:
  297.       item: REDSTONE_BLOCK
  298.     confirmPurchase:
  299.       item: LIME_STAINED_GLASS_PANE
  300.       subid: 5
  301.     page:
  302.       item: FEATHER
  303.     pageNext:
  304.       item: ARROW
  305.     pageBack:
  306.       item: ARROW
  307.     priceOrder:
  308.       item: ARROW
  309.     amountOrder:
  310.       item: COBBLESTONE
  311.     timeOrder:
  312.       item: CLOCK
  313.     claimAll:
  314.       item: GOLDEN_APPLE
  315. misc:
  316.   disabled: '&cThis feature is currently disabled!'
  317.   nomoney: '&cYou don''t have money to perform this action'
  318. searches:
  319.   categories: false
  320.   name: false
  321.   id: false
  322.   lore: false
  323. chatsearch:
  324.   lore: '&aWrite in chat the lore you want to search (- to cancel):'
  325.   name: '&aWrite in chat the name you want to search (- to cancel):'
  326.   cancel: '-'
  327.   cancelled: '&cSearch cancelled'
  328.   timeout_seconds: 60
  329. purchase:
  330.   nomoney: '&cVocê não tem dinheiro para comprar esse item!'
  331.   noavailable: '&cEsse item não está mais disponível'
  332.   purchase: '&aVocê comprou &6{item}&a com sucesso'
  333.   notification: '&6{buyer}&a comprou seu item &6{item}!&a saque seu dinheiro com &e/mc
  334.     meu'
  335.   notificationJoin: '&aVocê tem &6{listings}&a dinheiro para sacar (Use &e/mc meu&a
  336.     para pegar)!'
  337. shout:
  338.   permission: market.shout
  339.   message: '&e{player}&a publicou &6{item}&e no Mercado'
  340.   click: '&7[Clique aqui para abrir a loja de {player}]'
  341. date:
  342.   format: dd/MM/yy
  343.   now: agora
  344.   seconds: '{time} segundos atrás'
  345.   minutes: '{time} minutos atrás'
  346.   never: nunca
  347. money:
  348.   format: '#,###.00'
  349.   formatLocale: en-US
  350. tax:
  351.   sellerTax: 0
  352.   buyerTax: 0
  353.   webPurchaseTax: 0.0
  354.   publish:
  355.     permissions:
  356.    - market.publish_tax.vip=0
  357.     default: 0.0
  358.     confirm: '&cAo publicar esse item, &eR${money} &c(Taxa de {tax}% do preço) será
  359.       retirado da sua conta. Digite o comando novamente para confirmar'
  360.     confirm_cancel: '&cAnúncio cancelado'
  361.     confirm_time: 5
  362.     nomoney: '&cVocê não tem dinheiro para as taxas, &e(R${money})'
  363.     return_on_cancel: false
  364.     return_on_cancel_expired: false
  365.     return_message: '&a${amount} foi depositado na sua conta'
  366. timeout:
  367.   default: 1d
  368.   permissions:
  369.  - market.timeout.vip=30d
  370.   - market.timeout.never=infinite
  371. placeholderapi:
  372.   latest: '&6{item} &c{price}$ &7({seller})'
  373. langutils:
  374.   default: en_us
  375. blacklist:
  376.   enabled: true
  377.   message: '&cVocê não pode anunciar isso no &6Mercado!'
  378.   items:
  379.  - DRAGON_EGG
  380.   - DYE;14
  381.   - BEACON
  382.   - SKULL
  383.   - SKULL_ITEM
  384.   lore_enabled: false
  385.   lores:
  386.  - Item Especial
  387.   name_enabled: false
  388.   names:
  389.  - Super Item
  390. discordWebhook:
  391.   enabled: false
  392.   debug: false
  393.   url: ''
  394.   botName: Mercado
  395.   botAvatar: https://www.spigotmc.org/data/resource_icons/48/48526.jpg
  396.   notification:
  397.     publish:
  398.       enabled: true
  399.       title: Novo Item Publicado
  400.       description: '**{player}** publicou **{item}** por **${price}**'
  401.       color: '#fec601'
  402.     purchase:
  403.       enabled: true
  404.       title: Item Comprado
  405.       description: '**{buyer}** comprou **{item}** por **${price}** publicado por
  406.         **{seller}**'
  407.       color: '#30e539'
  408. categories:
  409.   tools:
  410.     name: '&bFerramentas'
  411.     icon: WOOD_PICKAXE
  412.     description: '&7Machados, Picaretas, Enxadas e mais!'
  413.     items:
  414.    - FLINT_AND_STEEL
  415.     - COMPASS
  416.     - WATCH
  417.     - FISHING_ROD
  418.     - SHEARS
  419.     - LEASH
  420.     - WOOD_HOE
  421.     - STONE_HOE
  422.     - IRON_HOE
  423.     - DIAMOND_HOE
  424.     - GOLD_HOE
  425.     - WOOD_AXE
  426.     - STONE_AXE
  427.     - IRON_AXE
  428.     - DIAMOND_AXE
  429.     - GOLD_AXE
  430.     - WOOD_PICKAXE
  431.     - STONE_PICKAXE
  432.     - IRON_PICKAXE
  433.     - DIAMOND_PICKAXE
  434.     - GOLD_PICKAXE
  435.   equipment:
  436.     name: '&5Equipamentos'
  437.     icon: IRON_HELMET
  438.     description: '&7Armaduras'
  439.     items:
  440.    - LEATHER_HELMET
  441.     - LEATHER_CHESTPLATE
  442.     - LEATHER_LEGGINGS
  443.     - LEATHER_BOOTS
  444.     - CHAINMAIL_HELMET
  445.     - CHAINMAIL_CHESTPLATE
  446.     - CHAINMAIL_LEGGINGS
  447.     - CHAINMAIL_BOOTS
  448.     - IRON_HELMET
  449.     - IRON_CHESTPLATE
  450.     - IRON_LEGGINGS
  451.     - IRON_BOOTS
  452.     - DIAMOND_HELMET
  453.     - DIAMOND_CHESTPLATE
  454.     - DIAMOND_LEGGINGS
  455.     - DIAMOND_BOOTS
  456.     - GOLD_HELMET
  457.     - GOLD_CHESTPLATE
  458.     - GOLD_LEGGINGS
  459.     - GOLD_BOOTS
  460.   blocks:
  461.     name: '&7Blocos'
  462.     icon: DIRT
  463.     description: '&bTodos os blocos que você possa imaginar'
  464.     items:
  465.    - AIR
  466.     - STONE
  467.     - GRASS
  468.     - DIRT
  469.     - COBBLESTONE
  470.     - WOOD
  471.     - SAPLING
  472.     - BEDROCK
  473.     - WATER
  474.     - STATIONARY_WATER
  475.     - LAVA
  476.     - STATIONARY_LAVA
  477.     - SAND
  478.     - GRAVEL
  479.     - GOLD_ORE
  480.     - IRON_ORE
  481.     - COAL_ORE
  482.     - LOG
  483.     - LEAVES
  484.     - SPONGE
  485.     - GLASS
  486.     - LAPIS_ORE
  487.     - LAPIS_BLOCK
  488.     - DISPENSER
  489.     - SANDSTONE
  490.     - NOTE_BLOCK
  491.     - BED_BLOCK
  492.     - POWERED_RAIL
  493.     - DETECTOR_RAIL
  494.     - PISTON_STICKY_BASE
  495.     - WEB
  496.     - LONG_GRASS
  497.     - DEAD_BUSH
  498.     - PISTON_BASE
  499.     - PISTON_EXTENSION
  500.     - WOOL
  501.     - PISTON_MOVING_PIECE
  502.     - YELLOW_FLOWER
  503.     - RED_ROSE
  504.     - BROWN_MUSHROOM
  505.     - RED_MUSHROOM
  506.     - GOLD_BLOCK
  507.     - IRON_BLOCK
  508.     - DOUBLE_STEP
  509.     - STEP
  510.     - BRICK
  511.     - TNT
  512.     - BOOKSHELF
  513.     - MOSSY_COBBLESTONE
  514.     - OBSIDIAN
  515.     - TORCH
  516.     - FIRE
  517.     - MOB_SPAWNER
  518.     - WOOD_STAIRS
  519.     - CHEST
  520.     - REDSTONE_WIRE
  521.     - DIAMOND_ORE
  522.     - DIAMOND_BLOCK
  523.     - WORKBENCH
  524.     - CROPS
  525.     - SOIL
  526.     - FURNACE
  527.     - BURNING_FURNACE
  528.     - SIGN_POST
  529.     - WOODEN_DOOR
  530.     - LADDER
  531.     - RAILS
  532.     - COBBLESTONE_STAIRS
  533.     - WALL_SIGN
  534.     - LEVER
  535.     - STONE_PLATE
  536.     - IRON_DOOR_BLOCK
  537.     - WOOD_PLATE
  538.     - REDSTONE_ORE
  539.     - GLOWING_REDSTONE_ORE
  540.     - REDSTONE_TORCH_OFF
  541.     - REDSTONE_TORCH_ON
  542.     - STONE_BUTTON
  543.     - SNOW
  544.     - ICE
  545.     - SNOW_BLOCK
  546.     - CACTUS
  547.     - CLAY
  548.     - SUGAR_CANE_BLOCK
  549.     - JUKEBOX
  550.     - FENCE
  551.     - PUMPKIN
  552.     - NETHERRACK
  553.     - SOUL_SAND
  554.     - GLOWSTONE
  555.     - PORTAL
  556.     - JACK_O_LANTERN
  557.     - CAKE_BLOCK
  558.     - DIODE_BLOCK_OFF
  559.     - DIODE_BLOCK_ON
  560.     - STAINED_GLASS
  561.     - TRAP_DOOR
  562.     - MONSTER_EGGS
  563.     - SMOOTH_BRICK
  564.     - HUGE_MUSHROOM_1
  565.     - HUGE_MUSHROOM_2
  566.     - IRON_FENCE
  567.     - THIN_GLASS
  568.     - MELON_BLOCK
  569.     - PUMPKIN_STEM
  570.     - MELON_STEM
  571.     - VINE
  572.     - FENCE_GATE
  573.     - BRICK_STAIRS
  574.     - SMOOTH_STAIRS
  575.     - MYCEL
  576.     - WATER_LILY
  577.     - NETHER_BRICK
  578.     - NETHER_FENCE
  579.     - NETHER_BRICK_STAIRS
  580.     - NETHER_WARTS
  581.     - ENCHANTMENT_TABLE
  582.     - BREWING_STAND
  583.     - CAULDRON
  584.     - ENDER_PORTAL
  585.     - ENDER_PORTAL_FRAME
  586.     - ENDER_STONE
  587.     - DRAGON_EGG
  588.     - REDSTONE_LAMP_OFF
  589.     - REDSTONE_LAMP_ON
  590.     - WOOD_DOUBLE_STEP
  591.     - WOOD_STEP
  592.     - COCOA
  593.     - SANDSTONE_STAIRS
  594.     - EMERALD_ORE
  595.     - ENDER_CHEST
  596.     - TRIPWIRE_HOOK
  597.     - TRIPWIRE
  598.     - EMERALD_BLOCK
  599.     - SPRUCE_WOOD_STAIRS
  600.     - BIRCH_WOOD_STAIRS
  601.     - JUNGLE_WOOD_STAIRS
  602.     - COMMAND
  603.     - BEACON
  604.     - COBBLE_WALL
  605.     - FLOWER_POT
  606.     - CARROT
  607.     - POTATO
  608.     - WOOD_BUTTON
  609.     - SKULL
  610.     - ANVIL
  611.     - TRAPPED_CHEST
  612.     - GOLD_PLATE
  613.     - IRON_PLATE
  614.     - REDSTONE_COMPARATOR_OFF
  615.     - REDSTONE_COMPARATOR_ON
  616.     - DAYLIGHT_DETECTOR
  617.     - REDSTONE_BLOCK
  618.     - QUARTZ_ORE
  619.     - HOPPER
  620.     - QUARTZ_BLOCK
  621.     - QUARTZ_STAIRS
  622.     - ACTIVATOR_RAIL
  623.     - DROPPER
  624.     - STAINED_CLAY
  625.     - STAINED_GLASS_PANE
  626.     - LEAVES_2
  627.     - LOG_2
  628.     - ACACIA_STAIRS
  629.     - DARK_OAK_STAIRS
  630.     - SLIME_BLOCK
  631.     - BARRIER
  632.     - IRON_TRAPDOOR
  633.     - PRISMARINE
  634.     - SEA_LANTERN
  635.     - HAY_BLOCK
  636.     - CARPET
  637.     - HARD_CLAY
  638.     - COAL_BLOCK
  639.     - PACKED_ICE
  640.     - DOUBLE_PLANT
  641.     - STANDING_BANNER
  642.     - WALL_BANNER
  643.     - DAYLIGHT_DETECTOR_INVERTED
  644.     - RED_SANDSTONE
  645.     - RED_SANDSTONE_STAIRS
  646.     - DOUBLE_STONE_SLAB2
  647.     - STONE_SLAB2
  648.     - SPRUCE_FENCE_GATE
  649.     - BIRCH_FENCE_GATE
  650.     - JUNGLE_FENCE_GATE
  651.     - DARK_OAK_FENCE_GATE
  652.     - ACACIA_FENCE_GATE
  653.     - SPRUCE_FENCE
  654.     - BIRCH_FENCE
  655.     - JUNGLE_FENCE
  656.     - DARK_OAK_FENCE
  657.     - ACACIA_FENCE
  658.     - SPRUCE_DOOR
  659.     - BIRCH_DOOR
  660.     - JUNGLE_DOOR
  661.     - ACACIA_DOOR
  662.     - DARK_OAK_DOOR
  663.   weapons:
  664.     name: '&6Armas'
  665.     icon: STONE_SWORD
  666.     description: '&7Espadas, arcos e flechas'
  667.     items:
  668.    - BOW
  669.     - ARROW
  670.     - SPECTRAL_ARROW
  671.     - TIPPED_ARROW
  672.     - WOOD_SWORD
  673.     - STONE_SWORD
  674.     - IRON_SWORD
  675.     - DIAMOND_SWORD
  676.     - GOLD_SWORD
  677.   redstone:
  678.     name: '&cRedstone'
  679.     icon: REDSTONE
  680.     description: '&7Tudo que você precisa para\n&7criar sistemas de redstone'
  681.     items:
  682.    - REDSTONE
  683.     - DIODE
  684.     - REDSTONE_COMPARATOR
  685.     - REDSTONE_TORCH_ON
  686.     - DISPENSER
  687.     - DROPPER
  688.     - HOPPER
  689.     - LEVER
  690.     - REDSTONE_LAMP_OFF
  691.     - TRIPWIRE_HOOK
  692.     - NOTE_BLOCK
  693.     - PISTON_STICKY_BASE
  694.     - PISTON_BASE
  695.     - TNT
  696.     - DAYLIGHT_DETECTOR
  697.     - STONE_BUTTON
  698.     - WOOD_BUTTON
  699.     - TRAP_DOOR
  700.     - IRON_TRAPDOOR
  701.     - STONE_PLATE
  702.     - WOOD_PLATE
  703.     - GOLD_PLATE
  704.     - IRON_PLATE
  705. inventory:
  706.   dropItemsOnFull: true
  707.   full: '&cYour inventory is full'
  708. inspect:
  709.   inspecting: '&aInspecting {player}'
  710.   action1: '&c&lClick to &ncancel'
  711.   action2: '&c&lShift-Click to &ndelete'
  712.   action3: '&c&lClick to &ndelete'
  713.   broadcast: false
  714.   broadcast_message: '&c{canceller} cancelled {player}''s {item}'
Add Comment
Please, Sign In to add comment