Ender2983

Untitled

May 26th, 2020
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.39 KB | None | 0 0
  1. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  2. # Shopkeepers Config
  3. # Wiki: https://github.com/Shopkeepers/Shopkeepers-Wiki/wiki/Configuration
  4. # The wiki also explains how item data gets specified inside the config.
  5. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  6.  
  7. # Determines the required config migrations. Do not edit manually!
  8. config-version: 2
  9. # The initial debugging state of the plugin.
  10. debug: false
  11. # Additional debugging options.
  12. # - 'log-all-events': Logs all events.
  13. # - 'print-listeners': Prints the registered listeners for the first call of
  14. # each event.
  15. # - 'shopkeeper-activation': Enables debugging output related to shopkeeper
  16. # activation.
  17. # - 'commands': Enables additional commands related debugging output.
  18. # - 'owner-name-updates': Logs information when updating stored shop owner
  19. # names.
  20. # - 'item-migrations': Logs whenever a shopkeeper performs item migrations (eg.
  21. # for trading offers).
  22. debug-options: []
  23. # Whether to report anonymous usage statistics to https://bStats.org
  24. # All reported information can be found here:
  25. # https://bstats.org/plugin/bukkit/Shopkeepers
  26. enable-metrics: true
  27.  
  28. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  29. # Shopkeeper Data
  30. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  31.  
  32. # The file encoding to use for the save file. If empty, your system's default
  33. # encoding will be used. If you have issues with the save file, such as special
  34. # characters not being saved correctly, try setting this option to 'UTF-8'.
  35. file-encoding: "UTF-8"
  36. # Whether the save file shall get written every time a shopkeeper was edited.
  37. # If disabled, saving will occur at 5 minute intervals and on plugin shutdown.
  38. # If you have a large server with many players and/or many shopkeepers, it
  39. # might be a good idea to disable this for performance reasons.
  40. save-instantly: true
  41.  
  42. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  43. # Plugin Compatibility
  44. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  45.  
  46. # Whether the plugin shall periodically verify that all shopkeepers that should
  47. # currently be spawned are actually present. This should only be enabled if you
  48. # have problems with shopkeepers disappearing.
  49. enable-spawn-verifier: false
  50. # If enabled, Shopkeepers tries to bypass other plugins which deny mob spawning
  51. # (ex. land protection plugins).
  52. bypass-spawn-blocking: true
  53. # If enabled, Shopkeepers takes into account whether other plugins deny
  54. # interaction with the shopkeepers.
  55. check-shop-interaction-result: false
  56.  
  57. # If enabled, players will only be able to place shopkeepers where they have
  58. # permission from WorldGuard to build or where the 'allow-shop' flag is set.
  59. enable-world-guard-restrictions: false
  60. # If enabled (additionally to the enable-world-guard-restrictions setting),
  61. # players will only be able to place shopkeepers in regions where the
  62. # 'allow-shop' flag is set, but nowhere else. However, players will still
  63. # require chest access for shop setup to work. And in case they can't place
  64. # chests in the affected region, shop chests need to be pre-setup by someone
  65. # else and the require-chest-recently-placed setting needs to be disabled.
  66. require-world-guard-allow-shop-flag: false
  67. # Whether to register the allow-shop flag with WorldGuard (if no other plugin
  68. # has registered it yet). Usually there should be no need to disable this.
  69. # Changing this setting has no effect until the next server restart or full
  70. # server reload!
  71. register-world-guard-allow-shop-flag: true
  72.  
  73. # If enabled, players will only be able to place shopkeepers in places that
  74. # have been designated as commercial areas by Towny.
  75. enable-towny-restrictions: false
  76.  
  77. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  78. # Shop Creation (and removal)
  79. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  80.  
  81. # The item used to create player shops.
  82. shop-creation-item: VILLAGER_SPAWN_EGG
  83.  
  84. # Whether to prevent normal usage of the shop-creation item. Players with the
  85. # bypass permission (usually admins) can bypass this.
  86. prevent-shop-creation-item-regular-usage: false
  87. # Whether deleting (or destroying) a player shopkeeper returns (drops) the
  88. # shop-creation item.
  89. deleting-player-shop-returns-creation-item: false
  90.  
  91. # Whether to allow creating player shops with the /shopkeeper command.
  92. create-player-shop-with-command: false
  93.  
  94. # Whether the selected chest must have been recently placed by the player
  95. # attempting to create the shopkeeper.
  96. require-chest-recently-placed: true
  97. # The maximum distance a player shopkeeper can be placed from its backing
  98. # chest. This cannot be set to a value greater than 50.
  99. max-chest-distance: 15
  100. # The default maximum number of shops a player can have. Set to 0 to allow any
  101. # number of shops.
  102. max-shops-per-player: 0
  103. # A list of permission nodes that can be used to explicitly set the maximum
  104. # number of shops a specific player or group of players can have. Use the
  105. # shopkeeper.maxshops.<count> permission node pattern to use this feature.
  106. max-shops-perm-options: 5,15,25
  107.  
  108. # Whether to protect player shop chests from being accessed or broken. Usually
  109. # it is recommended to keep this enabled.
  110. protect-chests: true
  111. # Whether to prevent item movement from and to protected shop chests (via
  112. # hoppers, droppers, etc.). Item movement will always be allowed if the chest
  113. # protection is disabled.
  114. prevent-item-movement: true
  115. # Whether to delete player shopkeepers when their backing chest is broken.
  116. delete-shopkeeper-on-break-chest: false
  117.  
  118. # If enabled (set to a value greater than 0), Shopkeepers will check for and
  119. # remove the shops of inactive players once every plugin start. This setting
  120. # determines how many days ago a player's last login has to be in order for the
  121. # player to be considered inactive.
  122. player-shopkeeper-inactive-days: 0
  123.  
  124. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  125. # Shop (Object) Types
  126. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  127.  
  128. # A list of mob types which can be used for shopkeepers. Adding new mob types
  129. # to the defaults here is unsupported, as some mob types might not properly
  130. # work and can cause all kinds of issues.
  131. enabled-living-shops:
  132. - VILLAGER
  133. - COW
  134. - MUSHROOM_COW
  135. - SHEEP
  136. - PIG
  137. - CHICKEN
  138. - OCELOT
  139. - RABBIT
  140. - WOLF
  141. - SNOWMAN
  142. - IRON_GOLEM
  143. - POLAR_BEAR
  144. - BLAZE
  145. - SILVERFISH
  146. - SKELETON
  147. - STRAY
  148. - WITHER_SKELETON
  149. - SPIDER
  150. - CAVE_SPIDER
  151. - CREEPER
  152. - WITCH
  153. - ENDERMAN
  154. - ZOMBIE
  155. - ZOMBIE_VILLAGER
  156. - PIG_ZOMBIE
  157. - HUSK
  158. - GIANT
  159. - GHAST
  160. - SLIME
  161. - MAGMA_CUBE
  162. - SQUID
  163. - HORSE
  164. - MULE
  165. - DONKEY
  166. - SKELETON_HORSE
  167. - ZOMBIE_HORSE
  168. - EVOKER
  169. - VEX
  170. - VINDICATOR
  171. - ILLUSIONER
  172. - PARROT
  173. - TURTLE
  174. - PHANTOM
  175. - COD
  176. - SALMON
  177. - PUFFERFISH
  178. - TROPICAL_FISH
  179. - DROWNED
  180. - DOLPHIN
  181. - CAT
  182. - PANDA
  183. - PILLAGER
  184. - RAVAGER
  185. - LLAMA
  186. - TRADER_LLAMA
  187. - WANDERING_TRADER
  188. - FOX
  189. - BEE
  190.  
  191. # With the old behavior the mobs can be pushed around and their AI and gravity
  192. # is handled by minecraft itself. With the new behavior all their vanilla AI is
  193. # disabled and their gravity and behavior is handled by the plugin instead.
  194. use-legacy-mob-behavior: false
  195. # Whether shopkeeper mobs shall not be affected by gravity.
  196. disable-gravity: false
  197. # The range in chunks around players in which shopkeeper mobs will be affected
  198. # by gravity. Setting this too high may have a negative impact on performance.
  199. # And setting it below the server's entity tracking range will result in
  200. # players being able to see mobs floating in mid air until they get close
  201. # enough. A value of 0 will limit the gravity to mobs within chunks that
  202. # contain a player. This has no effect if gravity is disabled, or when using
  203. # the legacy mob behavior.
  204. gravity-chunk-range: 4
  205.  
  206. # Whether mob shopkeepers make sounds.
  207. silence-living-shop-entities: true
  208.  
  209. # Whether to show nameplates of mob shopkeepers.
  210. show-nameplates: true
  211. # Whether to always show nameplates. If disabled, nameplates will only be shown
  212. # when looking directly at the shopkeeper.
  213. always-show-nameplates: false
  214. # The prefix for nameplates (to help distinguish them from players).
  215. nameplate-prefix: "&a"
  216.  
  217. # Whether to allow citizen (npc) shops. Requires the plugin Citizens.
  218. enable-citizen-shops: true
  219.  
  220. # Whether to allow sign shops.
  221. enable-sign-shops: true
  222. # Whether to allow the creation of sign posts (instead of only wall signs).
  223. enable-sign-post-shops: true
  224. # The first line of a sign shop.
  225. sign-shop-first-line: "[SHOP]"
  226.  
  227. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  228. # Naming
  229. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  230.  
  231. # A regular expression used to validate shopkeeper names. For detailed
  232. # information on the regular expression format see the java documentation:
  233. # https://docs.oracle.com/javase/9/docs/api/java/util/regex/Pattern.html
  234. # Here are a few examples:
  235. # * "[A-Za-z0-9 ]{3,25}": The default. Allows letters and numbers, from 3 to 25
  236. # characters long.
  237. # * "[A-Za-z0-9& ]{3,25}": Same as the default, but allows the ampersand
  238. # character which enables color codes.
  239. # * ".*": Allows everything.
  240. name-regex: "[A-Za-z0-9 ]{3,25}"
  241. # Whether player shops get named via item. This will hide the naming option
  242. # from the editor menu.
  243. naming-of-player-shops-via-item: false
  244. # Whether renaming of player npc (citizen) shopkeepers is allowed. By default
  245. # those shopkeepers will be named after the player who owns the shop.
  246. allow-renaming-of-player-npc-shops: false
  247.  
  248. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  249. # Editor Menu
  250. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  251.  
  252. # The window title of the shopkeeper editor menu.
  253. editor-title: "Shopkeeper Editor"
  254.  
  255. # The items used for the buttons and icons in the trades page row.
  256. # The display name and lore of these items get set via the corresponding
  257. # messages and can therefore not be defined here.
  258. previous-page-item: WRITABLE_BOOK
  259. next-page-item: WRITABLE_BOOK
  260. current-page-item: WRITABLE_BOOK
  261. trade-setup-item: PAPER
  262.  
  263. # The item used for the set-name button, and the naming item (if enabled).
  264. name-item: NAME_TAG
  265.  
  266. # Whether the editor menu of player shops contains an options to open the
  267. # shop's chest.
  268. enable-chest-option-on-player-shop: true
  269. # The item used for the open-chest button.
  270. chest-item: CHEST
  271.  
  272. # The item used for the delete button.
  273. delete-item: BONE
  274.  
  275. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  276. # Non-shopkeeper villagers
  277. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  278.  
  279. # Whether to prevent trading with non-shopkeeper villagers.
  280. disable-other-villagers: false
  281. # Whether to block regular non-shopkeeper villagers from spawning. Villagers
  282. # spawned by plugins, spawn eggs, mob spawners or by curing zombie villagers
  283. # are however not affected by this.
  284. block-villager-spawns: false
  285. # Whether to prevent curing of zombie villagers.
  286. disable-zombie-villager-curing: false
  287. # Whether non-shopkeeper villagers can be hired.
  288. hire-other-villagers: false
  289.  
  290. # Whether to prevent trading with non-shopkeeper wandering traders.
  291. disable-wandering-traders: false
  292. # Whether to block non-shopkeeper wandering traders and trader llamas from
  293. # spawning. Wandering traders and trader llamas spawned by plugins, spawn eggs
  294. # or mob spawners are however not affected by this.
  295. block-wandering-trader-spawns: false
  296. # Whether non-shopkeeper wandering traders can be hired.
  297. hire-wandering-traders: false
  298.  
  299. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  300. # Hiring
  301. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  302.  
  303. # The item to use for the hire button in player shopkeepers that are for sale,
  304. # and for the hire-cost when hiring non-shopkeeper villagers.
  305. hire-item: EMERALD
  306. # The amount of hire-cost items it costs to hire a non-shopkeeper villager.
  307. hire-other-villagers-costs: 1
  308. # The title of the hiring inventory window when hiring a player shopkeeper.
  309. for-hire-title: "For Hire"
  310. # Whether hiring a player shopkeeper also requires the permission to create
  311. # player shopkeepers of that type.
  312. hire-require-creation-permission: true
  313.  
  314. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  315. # Trading
  316. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  317.  
  318. # Whether to prevent players from trading with their own shopkeepers. Keeping
  319. # this enabled is recommended.
  320. prevent-trading-with-own-shop: true
  321. # With this enabled player shopkeepers don't trade while their owner is online.
  322. # This might be useful for role-playing servers, which wish to force players to
  323. # trade with each other directly while being online.
  324. prevent-trading-while-owner-is-online: false
  325. # Minecraft allows trading of not fully matching items in some situations
  326. # (ex. items with additional data are accepted in trades). With this enabled
  327. # Shopkeepers will always check that the traded items are fully matching and it
  328. # will prevent the trade once the player tries to pickup the item from the
  329. # trading result slot.
  330. use-strict-item-comparison: false
  331. # Whether all shopkeeper purchases shall be logged to csv files in the plugin
  332. # folder. Note: This might currently not properly work for admin shops, so
  333. # don't rely on the correctness of the logged purchases for those!
  334. enable-purchase-logging: false
  335. # Whether to increment minecraft's talked-to-villager and traded-with-villager
  336. # statistics whenever a player opens the trading menu and trades with a
  337. # shopkeeper.
  338. increment-villager-statistics: false
  339.  
  340. # The percentage that should be removed from player shop earnings.
  341. tax-rate: 0
  342. # Whether to round up instead of down when calculating the tax of a player shop
  343. # transaction.
  344. tax-round-up: false
  345.  
  346. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  347. # Currencies
  348. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  349.  
  350. # The item for the currency used in player shops.
  351. currency-item: EMERALD
  352.  
  353. # The item for the placeholder when a player has not set the cost for an item.
  354. zero-currency-item: BARRIER
  355.  
  356. # The item for a second, higher-value currency used in the second trading slot
  357. # of player shops. Set to 'AIR' to disable the second currency.
  358. high-currency-item: EMERALD_BLOCK
  359.  
  360. # The item for the placeholder when a player has not set the second currency
  361. # cost for an item.
  362. zero-high-currency-item: BARRIER
  363.  
  364. # The value of the second currency, based on the first currency.
  365. high-currency-value: 9
  366. # The second currency will only be used if an item's cost is greater than this
  367. # value.
  368. high-currency-min-cost: 20
  369.  
  370. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  371. # Messages
  372. # *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
  373.  
  374. language: en
  375.  
  376. msg-shop-type-admin-regular: "Admin shop"
  377. msg-shop-type-selling: "Selling shop"
  378. msg-shop-type-buying: "Buying shop"
  379. msg-shop-type-trading: "Trading shop"
  380. msg-shop-type-book: "Book shop"
  381.  
  382. msg-shop-type-desc-admin-regular: "has unlimited stock"
  383. msg-shop-type-desc-selling: "sells items to players"
  384. msg-shop-type-desc-buying: "buys items from players"
  385. msg-shop-type-desc-trading: "trades items with players"
  386. msg-shop-type-desc-book: "sells book copies"
  387.  
  388. msg-shop-object-type-living: "{type}"
  389. msg-shop-object-type-sign: "sign"
  390. msg-shop-object-type-npc: "npc"
  391.  
  392. msg-selected-shop-type: "&aSelected shop type: &6{type} &7({description})"
  393. msg-selected-shop-object-type: "&aSelected object type: &6{type}"
  394.  
  395. msg-creation-item-selected: |-
  396. &aShop creation:
  397. &e Left/Right-click to select the shop type.
  398. &e Sneak + left/right-click to select the object type.
  399. &e Right-click a chest to select it.
  400. &e Then right-click a block to place the shopkeeper.
  401.  
  402. msg-button-previous-page: "&6<- Previous page ({prev_page} of {max_page})"
  403. msg-button-previous-page-lore: []
  404. msg-button-next-page: "&6Next page ({next_page} of {max_page}) ->"
  405. msg-button-next-page-lore: []
  406. msg-button-current-page: "&6Page {page} of {max_page}"
  407. msg-button-current-page-lore: []
  408.  
  409. msg-button-name: "&aSet shop name"
  410. msg-button-name-lore:
  411. - Lets you rename
  412. - your shopkeeper
  413. msg-button-chest: "&aView chest inventory"
  414. msg-button-chest-lore:
  415. - Lets you view the inventory
  416. - your shopkeeper is using
  417. msg-button-delete: "&4Delete"
  418. msg-button-delete-lore:
  419. - Closes and removes
  420. - this shopkeeper
  421. msg-button-hire: "&aHire"
  422. msg-button-hire-lore:
  423. - Buy this shopkeeper
  424.  
  425. msg-button-sign-variant: "&aChoose sign variant"
  426. msg-button-sign-variant-lore:
  427. - "Changes the sign's"
  428. - "wood type"
  429. msg-button-baby: "&aToggle baby variant"
  430. msg-button-baby-lore:
  431. - "Toggles between the mob's"
  432. - "baby and adult variant"
  433. msg-button-sitting: "&aToggle sitting pose"
  434. msg-button-sitting-lore:
  435. - "Toggles the mob's"
  436. - "sitting pose"
  437. msg-button-cat-variant: "&aChoose cat variant"
  438. msg-button-cat-variant-lore:
  439. - "Changes the cat's look"
  440. msg-button-collar-color: "&aChoose collar color"
  441. msg-button-collar-color-lore:
  442. - "Changes the mob's"
  443. - "collar color"
  444. msg-button-wolf-angry: "&aToggle angry wolf"
  445. msg-button-wolf-angry-lore:
  446. - "Toggles the wolf's"
  447. - "angry state"
  448. msg-button-carrying-chest: "&aToggle carrying chest"
  449. msg-button-carrying-chest-lore:
  450. - "Toggles whether the mob"
  451. - "is carrying a chest"
  452. msg-button-horse-color: "&aChoose horse color"
  453. msg-button-horse-color-lore:
  454. - "Changes the color"
  455. - "of the horse"
  456. msg-button-horse-style: "&aChoose horse style"
  457. msg-button-horse-style-lore:
  458. - "Changes the coat pattern"
  459. - "of the horse"
  460. msg-button-horse-armor: "&aChoose horse armor"
  461. msg-button-horse-armor-lore:
  462. - "Changes the armor"
  463. - "of the horse"
  464. msg-button-llama-variant: "&aChoose llama variant"
  465. msg-button-llama-variant-lore:
  466. - "Changes the llama's look"
  467. msg-button-llama-carpet-color: "&aLlama carpet color"
  468. msg-button-llama-carpet-color-lore:
  469. - "Changes the llama's"
  470. - "carpet color"
  471. msg-button-creeper-charged: "&aToggle charged creeper"
  472. msg-button-creeper-charged-lore:
  473. - "Toggles the creeper's"
  474. - "charged state"
  475. msg-button-fox-variant: "&aChoose fox variant"
  476. msg-button-fox-variant-lore:
  477. - "Changes the fox's look"
  478. msg-button-fox-crouching: "&aToggle crouching pose"
  479. msg-button-fox-crouching-lore:
  480. - "Toggles the fox's"
  481. - "crouching pose"
  482. msg-button-fox-sleeping: "&aToggle sleeping pose"
  483. msg-button-fox-sleeping-lore:
  484. - "Toggles the fox's"
  485. - "sleeping pose"
  486. msg-button-mooshroom-variant: "&aChoose mooshroom variant"
  487. msg-button-mooshroom-variant-lore:
  488. - "Changes the look"
  489. - "of the mooshroom"
  490. msg-button-panda-variant: "&aChoose panda variant"
  491. msg-button-panda-variant-lore:
  492. - "Changes the panda's look"
  493. msg-button-parrot-variant: "&aChoose parrot variant"
  494. msg-button-parrot-variant-lore:
  495. - "Changes the parrot's look"
  496. msg-button-pig-saddle: "&aToggle pig saddle"
  497. msg-button-pig-saddle-lore:
  498. - "Toggles the pig's saddle"
  499. msg-button-sheep-color: "&aChoose sheep color"
  500. msg-button-sheep-color-lore:
  501. - "Changes the sheep's"
  502. - "wool color"
  503. msg-button-sheep-sheared: "&aToggle sheared sheep"
  504. msg-button-sheep-sheared-lore:
  505. - "Toggles the sheep's"
  506. - "sheared state"
  507. msg-button-villager-profession: "&aChoose villager profession"
  508. msg-button-villager-profession-lore:
  509. - "Changes the profession"
  510. - "of the villager"
  511. msg-button-villager-variant: "&aChoose villager variant"
  512. msg-button-villager-variant-lore:
  513. - "Changes the look"
  514. - "of the villager"
  515. msg-button-villager-level: "&aChoose villager level"
  516. msg-button-villager-level-lore:
  517. - "Changes the level"
  518. - "of the villager"
  519. msg-button-zombie-villager-profession: "&aChoose villager profession"
  520. msg-button-zombie-villager-profession-lore:
  521. - "Changes the profession"
  522. - "of the zombie villager"
  523.  
  524. msg-trading-title-prefix: "&2"
  525. msg-trading-title-default: "Shopkeeper"
  526.  
  527. msg-selected-chest: "&aChest selected! Right-click a block to place your shopkeeper."
  528. msg-must-select-chest: "&7You must right-click a chest before placing your shopkeeper."
  529. msg-no-chest-selected: "&7The selected block is not a chest!"
  530. msg-chest-too-far: "&7The shopkeeper's chest is too far away!"
  531. msg-chest-not-placed: "&7You must select a chest you have recently placed!"
  532. msg-chest-already-in-use: "&7Another shopkeeper is already using the selected chest!"
  533. msg-no-chest-access: "&7You cannot access the selected chest!"
  534. msg-too-many-shops: "&7You have too many shops!"
  535. msg-no-admin-shop-type-selected: "&7You have to select an admin shop type!"
  536. msg-no-player-shop-type-selected: "&7You have to select a player shop type!"
  537. msg-shop-create-fail: "&7You cannot create a shopkeeper there."
  538.  
  539. msg-type-new-name: "&aPlease type the shop's name into the chat.\n &aType a dash (-) to remove the name."
  540. msg-name-set: "&aThe shop's name has been set!"
  541. msg-name-has-not-changed: "&aThe shop's name has not changed."
  542. msg-name-invalid: "&aThat name is not valid!"
  543.  
  544. msg-shop-type-disabled: "&7The shop type '&6{type}&7' is disabled."
  545. msg-shop-object-type-disabled: "&7The shop object type '&6{type}&7' is disabled."
  546.  
  547. msg-must-target-shop: "&7You have to target a shopkeeper."
  548. msg-must-target-admin-shop: "&7You have to target an admin shopkeeper."
  549. msg-must-target-player-shop: "&7You have to target a player shopkeeper."
  550. msg-target-entity-is-no-shop: "&7The targeted entity is no shopkeeper."
  551. msg-target-shop-is-no-admin-shop: "&7The targeted shopkeeper is no admin shopkeeper."
  552. msg-target-shop-is-no-player-shop: "&7The targeted shopkeeper is no player shopkeeper."
  553. msg-unused-chest: "&7No shopkeeper is using this chest."
  554. msg-not-owner: "&7You are not the owner of this shopkeeper."
  555. msg-owner-set: "&aNew owner was set to &e{owner}"
  556. msg-shop-creation-items-given: "&aPlayer &e{player}&a has received &e{amount}&a shop creation item(s)!"
  557. msg-unknown-book-author: "Unknown"
  558.  
  559. msg-trade-perm-set: "&aThe shop's trading permission has been set to '&e{perm}&a'!"
  560. msg-trade-perm-removed: "&aThe shop's trading permission '&e{perm}&a' has been removed!"
  561. msg-trade-perm-view: "&aThe shop's current trading permission is '&e{perm}&a'."
  562.  
  563. msg-zombie-villager-curing-disabled: "&7Curing of zombie villagers is disabled."
  564. msg-must-hold-hire-item: "&7You have to hold the required hire item in your hand."
  565. msg-set-for-hire: "&aThe Shopkeeper was set for hire."
  566. msg-hired: "&aYou have hired this shopkeeper!"
  567. msg-missing-hire-perm: "&7You do not have the permission to hire shopkeepers."
  568. msg-cant-hire: "&7You cannot afford to hire this shopkeeper."
  569. msg-cant-hire-shop-type: "&7You do not have the permission to hire this type of shopkeeper."
  570. msg-villager-for-hire: "&aThe villager offered his services as a shopkeeper in exchange for &6{costs}x {hire-item}&a."
  571.  
  572. msg-missing-trade-perm: "&7You do not have the permission to trade with this shop."
  573. msg-missing-custom-trade-perm: "&7You do not have the permission to trade with this shop."
  574. msg-cant-trade-while-owner-online: "&7You cannot trade while the owner of this shop ('&e{owner}&7') is online."
  575.  
  576. msg-shopkeeper-created: "&aShopkeeper created: &6{type} &7({description})\n{setupDesc}"
  577.  
  578. msg-shop-setup-desc-selling: |-
  579. &e Add items you want to sell to your chest, then
  580. &e right-click the shop while sneaking to modify costs.
  581. msg-shop-setup-desc-buying: |-
  582. &e Add one of each item you want to buy to your chest, then
  583. &e right-click the shop while sneaking to modify costs.
  584. msg-shop-setup-desc-trading: |-
  585. &e Add items you want to sell to your chest, then
  586. &e right-click the shop while sneaking to modify costs.
  587. msg-shop-setup-desc-book: |-
  588. &e Add written books and blank books to your chest, then
  589. &e right-click the shop while sneaking to modify costs.
  590. msg-shop-setup-desc-admin-regular: |-
  591. &e Right-click the shop while sneaking to modify trades.
  592.  
  593. msg-trade-setup-desc-header: '&6{shopType}'
  594. msg-trade-setup-desc-admin-regular:
  595. - Has unlimited stock.
  596. - Insert items from your inventory.
  597. - Left/Right click to adjust amounts.
  598. - 'Top row: Result items'
  599. - 'Bottom rows: Cost items'
  600. msg-trade-setup-desc-selling:
  601. - Sells items to players.
  602. - Insert items to sell into the chest.
  603. - Left/Right click to adjust amounts.
  604. - 'Top row: Items being sold'
  605. - 'Bottom rows: Cost items'
  606. msg-trade-setup-desc-buying:
  607. - Buys items from players.
  608. - Insert one of each item you want to
  609. - buy and plenty of currency items
  610. - into the chest.
  611. - Left/Right click to adjust amounts.
  612. - 'Top row: Cost items'
  613. - 'Bottom row: Items being bought'
  614. msg-trade-setup-desc-trading:
  615. - Trades items with players.
  616. - Pickup an item from your inventory
  617. - and then click a slot to place it.
  618. - Left/Right click to adjust amounts.
  619. - 'Top row: Result items'
  620. - 'Bottom rows: Cost items'
  621. msg-trade-setup-desc-book:
  622. - Sells book copies.
  623. - Insert written and blank books
  624. - into the chest.
  625. - Left/Right click to adjust costs.
  626. - 'Top row: Books being sold'
  627. - 'Bottom rows: Cost items'
  628.  
  629. msg-list-admin-shops-header: "&9There are &e{shopsCount} &9admin shops: &e(Page {page} of {maxPage})"
  630. msg-list-player-shops-header: "&9Player '&e{player}&9' has &e{shopsCount} &9shops: &e(Page {page} of {maxPage})"
  631. msg-list-shops-entry: " &e{shopId}) &7{shopName}&r&8at &7({location})&8, type: &7{shopType}&8, object: &7{objectType}"
  632.  
  633. msg-removed-admin-shops: "&e{shopsCount} &aadmin shops were removed."
  634. msg-removed-player-shops: "&e{shopsCount} &ashops of player '&e{player}&a' were removed."
  635. msg-removed-all-player-shops: "&aAll &e{shopsCount} &aplayer shops were removed."
  636.  
  637. msg-confirm-remove-admin-shops: "&cYou are about to irrevocable remove all admin shops (&6{shopsCount}&c)!"
  638. msg-confirm-remove-own-shops: "&cYou are about to irrevocable remove all your shops (&6{shopsCount}&c)!"
  639. msg-confirm-remove-player-shops: "&cYou are about to irrevocable remove all shops of player &6{player}&c (&6{shopsCount}&c)!"
  640. msg-confirm-remove-all-player-shops: "&cYou are about to irrevocable remove all player shops of all players (&6{shopsCount}&c)!"
  641.  
  642. msg-confirmation-required: "&7Please confirm this action by typing &6/shopkeepers confirm"
  643. msg-confirmation-expired: "&cConfirmation expired."
  644. msg-nothing-to-confirm: "&cThere is nothing to confirm currently."
  645.  
  646. msg-no-permission: "&cYou don't have the permission to do that."
  647.  
  648. msg-command-unknown: "&cUnknown command '&e{command}&c'!"
  649. msg-command-argument-unexpected: "&cUnexpected argument '&e{argument}&c'."
  650. msg-command-argument-requires-player: "&cArgument '&e{argumentFormat}&c' requires a player to execute the command."
  651. msg-command-argument-missing: "&cMissing argument '&e{argumentFormat}&c'."
  652. msg-command-argument-invalid: "&cInvalid argument '&e{argument}&c'."
  653. msg-command-player-argument-missing: "&cNo player specified for '&e{argumentFormat}&c'."
  654. msg-command-player-argument-invalid: "&cNo player found for '&e{argument}&c'."
  655. msg-command-shop-type-argument-invalid: "&cUnknown shop type '&e{argument}&c'."
  656. msg-command-shop-object-type-argument-invalid: "&cUnknown shop object type '&e{argument}&c'."
  657. msg-command-shopkeeper-argument-invalid: "&cNo shopkeeper found for '&e{argument}&c'."
  658. msg-command-shopkeeper-argument-no-admin-shop: "&cShopkeeper '&e{argument}&c' is no admin shopkeeper."
  659. msg-command-shopkeeper-argument-no-player-shop: "&cShopkeeper '&e{argument}&c' is no player shopkeeper."
  660.  
  661. msg-ambiguous-player-name: "&cThere are multiple matches for the name '&e{name}&c'!"
  662. msg-ambiguous-player-name-entry: "&c - '&e{name}&r&c' (&6{uuid}&c)"
  663. msg-ambiguous-player-name-more: "&c - ...."
  664.  
  665. msg-command-help-title: "&9***** &8[&6Shopkeepers v{version}&8] &9*****"
  666. msg-command-help-usage-format: "&e{usage}"
  667. msg-command-help-description-format: "&8 - &3{description}"
  668.  
  669. msg-command-description-shopkeeper: "Creates a shopkeeper."
  670. msg-command-description-help: "Shows this help page."
  671. msg-command-description-reload: "Reloads this plugin."
  672. msg-command-description-debug: "Toggles debug mode on and off."
  673. msg-command-description-list: "Lists all shops for the specified player, or all admin shops."
  674. msg-command-description-remove: "Removes all shops for the specified player, all players, or all admin shops."
  675. msg-command-description-give: "Gives shop creation item(s) to the specified player."
  676. msg-command-description-remote: "Remotely opens a shop (Optionally: For another player)."
  677. msg-command-description-remote-edit: "Remotely edits a shop."
  678. msg-command-description-transfer: "Transfers the ownership of a shop."
  679. msg-command-description-settradeperm: "Sets, removes (-) or displays (?) the trading permission."
  680. msg-command-description-setforhire: "Sets one of your shops for sale."
Advertisement
Add Comment
Please, Sign In to add comment