Advertisement
The_Munchkin

Shopkeepers config

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