Advertisement
namekuzi

SkillAPI CONFIG

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