Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.74 KB | None | 0 0
  1. # config for Brewery.jar
  2.  
  3.  
  4. # -- Settings --
  5. # Defaults are written in []
  6. # Deleting of single settings disables them
  7.  
  8. # Languagefile to be used (found in plugins/Brewery/languages)
  9. language: en
  10.  
  11. # If the player wakes up at /home when logging in after excessive drinking (/home plugin must be installed!) [true]
  12. enableHome: true
  13.  
  14. # Type of the home-teleport: ['cmd: home']
  15. # bed = Player will be teleported to his spawn bed
  16. # SamplePlugin = installed home plugin. Supports: ManagerXL. If not available:
  17. # 'cmd: home' = /home will be executed by the player. He has to have permissions for it without any delay!
  18. # 'cmd: spawn' = /spawn will be executed by the player.
  19. # 'cmd: whatever' = /whatever will be executed by the player.
  20. homeType: 'cmd: home'
  21.  
  22. # If the player "wakes up" at a random place when offline for some time while drinking (the places have to be defined with '/br Wakeup add' through an admin)
  23. # The Player wakes at the nearest of two random places of his world [true]
  24. enableWake: false
  25.  
  26. # If the Player may get some logins denied, when his character is drunk [true]
  27. enableLoginDisallow: false
  28.  
  29. # If the Player faints (gets kicked) for some minutes if he overdrinks [true]
  30. enableKickOnOverdrink: false
  31.  
  32. # If the Player vomits on high drunkeness (drops item defined below) [true]
  33. # The item can not be collected and stays on the ground until it despawns. (Warning: May be collected after Server restart!)
  34. enablePuke: true
  35.  
  36. # Item that is dropped multiple times uncollectable when puking [SOUL_SAND]
  37. pukeItem: SOUL_SAND
  38.  
  39. # Consumable Item/strength. Decreases the alcohol level by <strength> when consumed. (list)
  40. drainItems:
  41. - BREAD/4
  42. - MILK_BUCKET/2
  43.  
  44. # Time (in days) that drunkeness-data stays in memory after a player goes offline, to apply hangover etc. [7]
  45. hangoverDays: 7
  46.  
  47. # Color the Item information (lore) depending on quality while it is 1. in a barrel and/or 2. in a brewing stand [true, false]
  48. colorInBarrels: true
  49. colorInBrewer: true
  50.  
  51. # If a Large Barrel can be opened by clicking on any of its blocks, not just Spigot or Sign. This is always true for Small Barrels. [true]
  52. openLargeBarrelEverywhere: true
  53.  
  54. # Enable checking for Updates, Checks the curseforge api for updates to Brewery [true]
  55. # If an Update is found a Message is logged on Server-start and displayed to ops joining the game
  56. updateCheck: true
  57.  
  58. # Autosave interval in minutes [3]
  59. autosave: 3
  60.  
  61. # Config Version
  62. version: '1.3.1'
  63.  
  64.  
  65. # -- Recipes for Potions --
  66.  
  67. # name: Different names for bad/normal/good (Formatting codes possible: such as &6)
  68. # ingredients: List of 'material or id,data/amount'
  69. # (Item-ids instead of material are deprecated by bukkit and may not work in the future!)
  70. # A list of materials can be found here: http://jd.bukkit.org/beta/apidocs/org/bukkit/Material.html
  71. # You can specify a data value, omitting it will ignore the data value of the added ingredient
  72. # cookingtime: Time in real minutes ingredients have to boil
  73. # distillruns: How often it has to be distilled for full alcohol (0=without distilling)
  74. # wood: Wood of the barrel 0=any 1=Birch 2=Oak 3=Jungle 4=Spruce 5=Acacia 6=Dark Oak
  75. # age: Time in Minecraft-days, the potion has to age in a barrel 0=no aging
  76. # color: Color of the potion after distilling/aging.
  77. # Usable Colors: DARK_RED, RED, BRIGHT_RED, ORANGE, PINK, BLUE, CYAN, WATER, GREEN, BLACK, GREY, BRIGHT_GREY
  78. # difficulty: 1-10 accuracy needed to get good quality (1 = unaccurate/easy, 10 = very precise/hard)
  79. # alcohol: Absolute amount of alcohol 0-100 in a perfect potion (will be added directly to the player, where 100 means fainting)
  80. # effects: List of effect/level/duration Special potion-effect when drinking, duration in sek.
  81. # Suffix name with 'X' to hide effect from label. Sample: 'POISONX/2/10' (WEAKNESS, INCREASE_DAMAGE, SLOW and SPEED are always hidden.)
  82. # Possible Effects: http://jd.bukkit.org/rb/apidocs/org/bukkit/potion/PotionEffectType.html
  83. # Level or Duration ranges may be specified with a "-", ex. 'SPEED/1-2/30-40' = lvl 1 and 30 sec at worst and lvl 2 and 40 sec at best
  84. # Ranges also work high-low, ex. 'POISON/3-1/20-5' for weaker effects at good quality.
  85. # Highest possible Duration: 1638 sec. Instant Effects dont need any duration specified.
  86.  
  87. recipes:
  88. # Example Recipe with every possible entry first:
  89. 0:
  90. name: Bad Example/Example/Good Example
  91. ingredients:
  92. - SUGAR_CANE/5
  93. - 264/1
  94. - INK_SACK,3/20
  95. - 5,1/8
  96. cookingtime: 3
  97. distillruns: 2
  98. wood: 4
  99. age: 11
  100. color: DARK_RED
  101. difficulty: 3
  102. alcohol: 23
  103. effects:
  104. - FIRE_RESISTANCE/20
  105. - HEAL/1
  106. - WEAKNESS/2-3/50-60
  107. - POISONX/1-0/20-0
  108. 1:
  109. name: Skunky Wheatbeer/Wheatbeer/Fine Wheatbeer
  110. ingredients:
  111. - WHEAT/3
  112. cookingtime: 8
  113. distillruns: 0
  114. wood: 0
  115. age: 2
  116. color: BRIGHT_GREY
  117. difficulty: 1
  118. alcohol: 5
  119. 2:
  120. name: Skunky Beer/Beer/Fine Beer
  121. ingredients:
  122. - WHEAT/6
  123. cookingtime: 8
  124. distillruns: 0
  125. wood: 4
  126. age: 3
  127. color: ORANGE
  128. difficulty: 1
  129. alcohol: 6
  130. 3:
  131. name: Skunky Ale/Ale/Fine Ale
  132. ingredients:
  133. - WHEAT/6
  134. cookingtime: 8
  135. distillruns: 0
  136. wood: 6
  137. age: 8
  138. color: BLACK
  139. difficulty: 2
  140. alcohol: 7
  141. 4:
  142. name: Awkward Mead/Mead/&6Golden Mead
  143. ingredients:
  144. - SUGAR_CANE/6
  145. cookingtime: 3
  146. distillruns: 0
  147. wood: 2
  148. age: 4
  149. color: ORANGE
  150. difficulty: 2
  151. alcohol: 9
  152. 5:
  153. name: Apple Mead/Sweet Apple Mead/&6Sweet Golden Apple Mead
  154. ingredients:
  155. - SUGAR_CANE/4
  156. - APPLE/2
  157. cookingtime: 4
  158. distillruns: 0
  159. wood: 2
  160. age: 4
  161. color: ORANGE
  162. difficulty: 4
  163. alcohol: 12
  164. effects:
  165. - WATER_BREATHINGX/1-2/150
  166. 6:
  167. name: Bitter Rum/Spicy Rum/&6Golden Rum
  168. ingredients:
  169. - SUGAR_CANE/14
  170. - SULPHUR/1
  171. cookingtime: 5
  172. distillruns: 2
  173. wood: 2
  174. age: 14
  175. color: DARK_RED
  176. difficulty: 6
  177. alcohol: 40
  178. effects:
  179. - FIRE_RESISTANCEX/1/20-100
  180. - POISONX/1-0/30-0
  181. 7:
  182. name: Lousy Vodka/Vodka/Russian Vodka
  183. ingredients:
  184. - POTATO_ITEM/10
  185. cookingtime: 15
  186. distillruns: 3
  187. age: 0
  188. color: BRIGHT_GREY
  189. difficulty: 4
  190. alcohol: 40
  191. effects:
  192. - WEAKNESS/15
  193. - POISONX/10
  194. 8:
  195. name: Poor Absinthe/Absinthe/Strong Absinthe
  196. ingredients:
  197. - LONG_GRASS/15
  198. cookingtime: 3
  199. distillruns: 6
  200. color: GREEN
  201. difficulty: 8
  202. alcohol: 65
  203. effects: 70
  204. - POISONX/20-30
  205. 9:
  206. name: Gross Potato Soup/Potato Soup/Fantastic Potato Soup
  207. ingredients:
  208. - POTATO_ITEM/5
  209. - LONG_GRASS/3
  210. cookingtime: 3
  211. color: ORANGE
  212. difficulty: 1
  213. effects:
  214. - HEALX/2-10
  215. 10:
  216. name: Stale Coffee/Coffee/Strong Coffee
  217. ingredients:
  218. - INK_SACK,3/12
  219. - MILK_BUCKET/2
  220. cookingtime: 2
  221. color: BLACK
  222. difficulty: 3
  223. effects:
  224. - REGENERATIONX/1/2-5
  225. - SPEED/3/30-140
  226. 11:
  227. name: Bitter Cider/Cider/&6Golden Cider
  228. ingredients:
  229. - APPLE/4
  230. - SUGAR/2
  231. - SULPHUR/1
  232. cookingtime: 3
  233. distillruns: 0
  234. age: 5
  235. color: ORANGE
  236. difficulty: 2
  237. alcohol: 8
  238. 12:
  239. name: Foul Whiskey/Whiskey/Strong Whiskey
  240. ingredients:
  241. - WHEAT/8
  242. - SUGAR_CANE/2
  243. cookingtime: 5
  244. distillruns: 3
  245. wood: 0
  246. age: 5
  247. color: GREY
  248. difficulty: 5
  249. alcohol: 35
  250. effects:
  251. - POISONX/10-15/30-20
  252. 13:
  253. name: Gross Carrot Soup/Carrot Soup/Fantastic Carrot Soup
  254. ingredients:
  255. - CARROT_ITEM/5
  256. - LONG_GRASS/3
  257. cookingtime: 3
  258. color: ORANGE
  259. difficulty: 1
  260. effects:
  261. - HEALX/2-10
  262. 14:
  263. name: Bland Green Tea/Green Tea/Delightful Green Tea
  264. ingredients:
  265. - LEAVES/8
  266. cookingtime: 3
  267. color: GREEN
  268. difficulty: 2
  269. effects:
  270. - REGENERATIONX/1/4-10
  271. - SPEEDX/1/30-50
  272. 15:
  273. name: Bland Black Tea/Black Tea/Delightful Black Tea
  274. ingredients:
  275. - LEAVES/6
  276. - INK_SACK/1
  277. cookingtime: 3
  278. color: BLACK
  279. difficulty: 2
  280. effects:
  281. - REGENERATIONX/1/4-8
  282. - SPEEDX/1/40-60
  283. 16:
  284. name: Poor Red Wine/Red Wine/Flavorful Red Wine
  285. ingredients:
  286. - SPIDER_EYE/5
  287. - REDSTONE/3
  288. cookingtime: 5
  289. wood: 0
  290. age: 10
  291. color: DARK_RED
  292. difficulty: 8
  293. alcohol: 12
  294. effects:
  295. - WEAKNESS/5-2/15-30
  296. - POISONX/5-10/20-10
  297. - REGENERATIONX/5-10/10-20
  298. 17:
  299. name: Poor White Wine/White Wine/Flavorful White Wine
  300. ingredients:
  301. - SPIDER_EYE/5
  302. - GLOWSTONE_DUST/3
  303. cookingtime: 5
  304. wood: 0
  305. age: 10
  306. color: PINK
  307. difficulty: 8
  308. alcohol: 12
  309. effects:
  310. - WEAKNESS/5-2/15-30
  311. - POISONX/5-10/20-10
  312. - REGENERATIONX/5-10/10-20
  313. 18:
  314. name: Bland Hot Cocoa/Hot Cocoa/Comforting Hot Cocoa
  315. ingredients:
  316. - COCOA/4
  317. - MILK_BUCKET/1
  318. - SUGAR/1
  319. cookingtime: 3
  320. color: BLACK
  321. difficulty: 1
  322. effects:
  323. - SPEED/1/60
  324. 19:
  325. name: Bitter Cachaça/Cachaça/&6Golden Cachaça
  326. ingredients:
  327. - SUGAR_CANE/15
  328. cookingtime: 5
  329. distillruns: 2
  330. wood: 3
  331. age: 3
  332. color: WATER
  333. difficulty: 6
  334. alcohol: 40
  335. effects:
  336. - SPEED/2-4/30-90
  337. 20:
  338. name: Bad Meme Extract/Meme Extract/Dank Meme Extract
  339. ingredients:
  340. - DIAMOND/3
  341. cookingtime: 10
  342. distillruns: 6
  343. wood: 5
  344. age: 10
  345. color: GREEN
  346. difficulty: 10
  347. alcohol: 99
  348. effects:
  349. - SPEED/10-50/120-360
  350. 21:
  351. name: Poor Gin/Gin/Excellent Gin
  352. ingredients:
  353. - SPIDER_EYE/3
  354. - WHEAT/3
  355. - SULPHUR/1
  356. cookingtime: 5
  357. distillruns: 2
  358. wood: 0
  359. age: 3
  360. color: WATER
  361. alcohol: 15
  362. effects:
  363. - JUMPX/1-5/60
  364. 22:
  365. name: Poor Sake/Sake/Flavorful Sake
  366. ingredients:
  367. - SEEDS/8
  368. cookingtime: 3
  369. distillruns: 0
  370. wood: 0
  371. age: 2
  372. color: LIGHT_GREY
  373. difficulty: 7
  374. alcohol: 15
  375.  
  376.  
  377. # More Recipes ideas: Cachaca, Gin, Whiskey, Tequila, Cider, etc. as well as high quality abbreviations like golden vodka etc.
  378. # I will not add more Recipes to the default config, as they would be public and viewable by users to cheat.
  379. # It is up to the Serveradmin to change and add Recipes, so players cannot cheat from the default config.
  380.  
  381.  
  382.  
  383. # cooked: EVERY possible ingredient and the names for the originating potions after fermenting:
  384. # [Example] MATERIAL_or_id: Name after cooking
  385.  
  386. cooked:
  387. WHEAT: Grain brew
  388. SUGAR_CANE: Sweet brew
  389. APPLE: Fruity brew
  390. POTATO_ITEM: Potato mash
  391. LONG_GRASS: Boiled herbs
  392. RED_MUSHROOM: Mushroom brew
  393. INK_SACK: Colored brew
  394. MILK_BUCKET: Warm milk
  395. SUGAR: Sweet brew
  396. CARROT_ITEM: Carrot mash
  397. LEAVES: Boiled herbs
  398. SPIDER_EYE: Fruity brew
  399. REDSTONE: Colored brew
  400. GLOWSTONE_DUST: Colored brew
  401. COCOA: Melted chocolate
  402. SULPHUR: Spiced brew
  403. DIAMOND: Crushed gems
  404. SEEDS: Grain brew
  405.  
  406.  
  407.  
  408.  
  409. # -- Plugin Compatibility --
  410.  
  411. # Enable checking of other Plugins (if installed) for Barrel Permissions [true]
  412. useWorldGuard: true
  413. useLWC: true
  414. useGriefPrevention: true
  415.  
  416. # Enable the Logging of Barrel Inventories to LogBlock [true]
  417. useLogBlock: true
  418.  
  419.  
  420. # -- Chat Distortion Settings --
  421.  
  422. # Log to the Serverlog what the player actually wrote, before his words were altered [false]
  423. logRealChat: false
  424.  
  425. # Text after specified commands will be distorted when drunk (list) [- /gl]
  426. distortCommands:
  427. - /gl
  428. - /global
  429. - /fl
  430. - /s
  431. - /letter
  432. - /g
  433. - /l
  434. - /lokal
  435. - /local
  436. - /mail send
  437. - /m
  438. - /msg
  439. - /w
  440. - /whisper
  441. - /reply
  442. - /r
  443.  
  444. # Distort the Text written on a Sign while drunk [false]
  445. distortSignText: true
  446.  
  447. # Enclose a text with these Letters to bypass Chat Distortion (Use "," as Separator) (list) [- '[,]']
  448. distortBypass:
  449. - '*,*'
  450. - '[,]'
  451.  
  452. # words: Words and letters that will be altered when chatting while being drunk.
  453. # Will be processed from first to last and a written sentece is altered in that order.
  454.  
  455. # replace: Word or letter to be replaced. (Special: "-space": replaces space, "-random": insert into random position, "-all": everything, "-start": At Beginning, "-end": At the End.)
  456. # to: What to replace it with.
  457. # pre: Words and Letters before the wanted word (split with ",")
  458. # match: true = one of the "pre"-Words has to be before the wanted Word, false = none of the "pre" Words is allowed before the wanted Word
  459. # alcohol: 1-100 minimum drunkeness after which this word ist replaced
  460. # percentage: Probability of replacing a Word in percent
  461.  
  462. words:
  463. - replace: s
  464. to: sh
  465. percentage: 90
  466. alcohol: 30
  467.  
  468. - replace: ch
  469. to: sh
  470. pre: u,s,o,a
  471. match: false
  472. alcohol: 10
  473. percentage: 70
  474.  
  475. - replace: h
  476. to: hh
  477. pre: sch,h,t
  478. match: false
  479. percentage: 60
  480. alcohol: 20
  481.  
  482. - replace: th
  483. to: thl
  484. percentage: 40
  485. alcohol: 30
  486.  
  487. - replace: sch
  488. to: shk
  489. percentage: 60
  490. alcohol: 40
  491.  
  492. - replace: u
  493. to: uuh
  494. percentage: 20
  495.  
  496. - replace: y
  497. to: yy
  498. percentage: 60
  499. alcohol: 15
  500.  
  501. - replace: e
  502. to: ee
  503. percentage: 40
  504. alcohol: 15
  505.  
  506. - replace: you
  507. to: u
  508. percentage: 40
  509.  
  510. - replace: u
  511. to: uo
  512. pre: u
  513. match: false
  514. percentage: 60
  515.  
  516. - replace: that
  517. to: taht
  518. percentage: 20
  519. alcohol: 40
  520.  
  521. - replace: p
  522. to: b
  523. percentage: 30
  524.  
  525. - replace: p
  526. to: b
  527. percentage: 70
  528. alcohol: 60
  529.  
  530. - replace: up
  531. to: ubb
  532. percentage: 80
  533. alcohol: 25
  534.  
  535. - replace: o
  536. to: oh
  537. percentage: 20
  538.  
  539. - replace: ei
  540. to: i
  541. percentage: 30
  542. alcohol: 15
  543.  
  544. - replace: b
  545. to: bb
  546. percentage: 80
  547. alcohol: 40
  548.  
  549. - replace: '!!!'
  550. to: '!!!111!!!eleven!1!'
  551. pre: '!'
  552. match: false
  553. percentage: 20
  554. alcohol: 70
  555.  
  556. - replace: '!'
  557. to: '!!'
  558. pre: '!'
  559. match: false
  560. percentage: 90
  561.  
  562. - replace: drunk
  563. to: dhrkunn
  564. pre: are
  565. match: false
  566. percentage: 70
  567. alcohol: 65
  568.  
  569. - replace: walk
  570. to: whhealhk
  571. pre: you can, you can still, you can not
  572. match: false
  573. percentage: 80
  574. alcohol: 30
  575.  
  576. - replace: wtf
  577. to: wft
  578. percentage: 20
  579. alcohol: 40
  580.  
  581. - replace: lol
  582. to: loool
  583. percentage: 80
  584. alcohol: 10
  585.  
  586. - replace: afk
  587. to: aafkayyy
  588. percentage: 30
  589. alcohol: 30
  590.  
  591. - replace: write
  592. to: wreitt
  593. pre: you can,you can still,you can not
  594. match: false
  595. percentage: 80
  596. alcohol: 50
  597.  
  598. - replace: drink
  599. to: booze
  600. percentage: 80
  601. alcohol: 70
  602.  
  603. - replace: '?'
  604. to: '????'
  605. pre: '?'
  606. match: false
  607. percentage: 80
  608. alcohol: 40
  609.  
  610. - replace: -space
  611. to: ''
  612. pre: h,g,w
  613. match: true
  614. alcohol: 10
  615.  
  616. - replace: -space
  617. to: ''
  618. percentage: 30
  619. alcohol: 35
  620.  
  621. replace: -random
  622. to: ' '
  623. percentage: 50
  624. alcohol: 40
  625.  
  626. - replace: -space
  627. to: ''
  628. percentage: 10
  629.  
  630. - replace: -start
  631. to: dho
  632. percentage: 15
  633. alcohol: 50
  634.  
  635. - replace: -start
  636. to: hhn
  637. percentage: 10
  638. alcohol: 50
  639.  
  640. - replace: -random
  641. to: lu
  642. percentage: 10
  643.  
  644. - replace: -random
  645. to: lug
  646. percentage: 10
  647. alcohol: 50
  648.  
  649. - replace: -random
  650. to: blub
  651. percentage: 20
  652. alcohol: 80
  653.  
  654. - replace: -random
  655. to: lerg
  656. percentage: 40
  657. alcohol: 85
  658.  
  659. - replace: -random
  660. to: gul
  661. percentage: 40
  662. alcohol: 80
  663.  
  664. - replace: -random
  665. to: ' '
  666. percentage: 100
  667. alcohol: 70
  668.  
  669. - replace: -random
  670. to: ' '
  671. percentage: 60
  672. alcohol: 40
  673.  
  674. - replace: -random
  675. to: ' '
  676. percentage: 50
  677. alcohol: 30
  678.  
  679. - replace: -end
  680. to: '!'
  681. percentage: 40
  682. alcohol: 30
  683.  
  684. - replace: -random
  685. to: ' *hic* '
  686. percentage: 80
  687. alcohol: 70
  688.  
  689. - replace: -random
  690. to: ' *hic* '
  691. percentage: 15
  692. alcohol: 40
  693.  
  694. - replace: -space
  695. to: ' *hic* '
  696. percentage: 5
  697. alcohol: 20
  698.  
  699. - replace: -end
  700. to: ' *hic*'
  701. percentage: 70
  702. alcohol: 50
  703.  
  704. - replace: -all
  705. to: '*burp*'
  706. percentage: 3
  707. alcohol: 60
  708.  
  709. - replace: -all
  710. to: '*burp*'
  711. percentage: 6
  712. alcohol: 80
  713.  
  714. - replace: -end
  715. to: ' purple monkey dishwasher'
  716. percentage: 20
  717. alcohol: 80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement