Advertisement
Guest User

Brewery Version 10 19/8/19

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