Advertisement
Guest User

brewery config - 6:53pm

a guest
Mar 31st, 2020
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.99 KB | None | 0 0
  1. # config for Brewery.jar
  2.  
  3.  
  4. # -- Settings --
  5. # Defaults are written in []
  6.  
  7. # Languagefile to be used (found in plugins/Brewery/languages)
  8. language: en
  9.  
  10. # If the player wakes up at /home when logging in after excessive drinking (/home plugin must be installed!) [true]
  11. enableHome: true
  12.  
  13. # Type of the home-teleport: ['cmd: home']
  14. # bed = Player will be teleported to his spawn bed
  15. # 'cmd: home' = /home will be executed by the player. He has to have permissions for it without any delay!
  16. # 'cmd: spawn' = /spawn will be executed by the player.
  17. # 'cmd: whatever' = /whatever will be executed by the player.
  18. homeType: 'cmd: home'
  19.  
  20. # 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)
  21. # The Player wakes at the nearest of two random places of his world [true]
  22. enableWake: true
  23.  
  24. # If the Player may have to try multiple times when logging in while extremely drunk [true]
  25. enableLoginDisallow: true
  26.  
  27. # If the Player faints shortly (gets kicked from the server) if he drinks the max amount of alcohol possible [false]
  28. enableKickOnOverdrink: false
  29.  
  30. # If the Player vomits on high drunkeness (drops item defined below) [true]
  31. # The item can not be collected and stays on the ground until it despawns.
  32. enablePuke: true
  33.  
  34. # Item that is dropped multiple times uncollectable when puking [Soul_Sand]
  35. pukeItem: Soul_Sand
  36.  
  37. # Time in seconds until the pukeitems despawn, (mc default is 300 = 5 min) [60]
  38. # If the item despawn time was changed in the spigot.yml, the pukeDespawntime changes as well.
  39. pukeDespawntime: 60
  40.  
  41. # Consumable Item/strength. Decreases the alcohol level by <strength> when consumed. (list)
  42. drainItems:
  43. - Bread/4
  44. - Milk_Bucket/2
  45.  
  46. # Time (in days) that drunkeness-data stays in memory after a player goes offline, to apply hangover etc. [7]
  47. hangoverDays: 7
  48.  
  49. # Color the Item information (lore) depending on quality while it is 1. in a barrel and/or 2. in a brewing stand [true, true]
  50. colorInBarrels: true
  51. colorInBrewer: true
  52.  
  53. # Always show the 1-5 stars on the item depending on the quality. If false, they will only appear when brewing [true]
  54. alwaysShowQuality: true
  55.  
  56. # Always show the alcohol content on the item. If false, it will only show in the brewing stand [false]
  57. alwaysShowAlc: false
  58.  
  59. # 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]
  60. openLargeBarrelEverywhere: true
  61.  
  62. # How many Brewery drinks can be put into the Minecraft barrels [6]
  63. maxBrewsInMCBarrels: 6
  64.  
  65. # The used Ingredients and other brewing-data is saved to all Brewery Items. To prevent
  66. # hacked clients from reading what exactly was used to brew an item, the data can be encoded/scrambled.
  67. # This is a fast process to stop players from hacking out recipes, once they get hold of a brew.
  68. # Only drawback: brew items can only be used on another server with the same encodeKey.
  69. # So enable this if you want to make recipe cheating harder, but don't share any brews by world download, schematics, or other means. [false]
  70. enableEncode: false
  71. encodeKey: 9205612189732912213
  72.  
  73. # Enable checking for Updates, Checks the curseforge api for updates to Brewery [true]
  74. # If an Update is found a Message is logged on Server-start and displayed to OPs joining the game
  75. updateCheck: true
  76.  
  77. # Autosave interval in minutes [3]
  78. autosave: 3
  79.  
  80. # Show debug messages in log [false]
  81. debug: false
  82.  
  83. # Config Version
  84. version: '2.0'
  85.  
  86.  
  87.  
  88. # -- Define custom items --
  89. # The defined id can then be used in recipes
  90.  
  91. # matchAny: true if it is already enough if one of the info matches
  92. # material: Which type the item has to be
  93. # name: Which name the item has to be (Formatting codes possible: such as &6)
  94. # lore: What has to be in the lore of the item
  95.  
  96. customItems:
  97. # Three Example Items
  98. ex-item:
  99. # A Barrier item called Wall and has the given line in its lore
  100. material: Barrier
  101. name: 'Wall'
  102. lore:
  103. - '&7Very well protected'
  104.  
  105. ex-item2:
  106. # Using matchAny only one of the following has to match.
  107. # In this case on of the door types, or an item called Beechwood Door, or an item with 'A door' in its lore
  108. matchAny: true
  109. material:
  110. - Acacia_Door
  111. - Oak_Door
  112. - Spruce_Door
  113. name:
  114. - 'Beechwood Door'
  115. lore:
  116. - 'A door'
  117.  
  118. rasp:
  119. name: '&cRaspberry'
  120.  
  121. blue-flowers:
  122. matchAny: true
  123. material:
  124. - cornflower
  125. - blue_orchid
  126.  
  127.  
  128. # -- Ingredients in the Cauldron --
  129. # Which Ingredients are accepted by the Cauldron and the base potion resulting from them
  130.  
  131. # name: Name of the base potion coming out of the Cauldron (Formatting codes possible: such as &6)
  132. # ingredients: List of 'material/amount'
  133. # With an item in your hand, use /brew ItemName to get its material for use in a recipe
  134. # (Item-ids instead of material are not supported by bukkit anymore and will not work)
  135. # A list of materials can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  136. # color: Color of the potion from a cauldron. Defaults to CYAN
  137. # Usable Colors: DARK_RED, RED, BRIGHT_RED, ORANGE, YELLOW, PINK, PURPLE, BLUE, CYAN, WATER, TEAL, OLIVE, GREEN, LIME, BLACK, GREY, BRIGHT_GREY, WHITE
  138. # Or RGB colors (hex: for example '99FF33') (with '') (search for "HTML color" on the internet)
  139. # lore: List of additional text on the base potion. (Formatting codes possible: such as &6)
  140.  
  141. cauldron:
  142. # Example with all possible entries
  143. ex:
  144. name: Example
  145. ingredients:
  146. - Bedrock/2
  147. - Diamond
  148. color: BLACK
  149. lore:
  150. - An example for a Base Potion
  151. - This is how it comes out of a Cauldron
  152.  
  153. # -- One Ingredient: --
  154. wheat:
  155. name: Fermented wheat
  156. ingredients: Wheat
  157.  
  158. sugarcane:
  159. name: Sugar brew
  160. ingredients: Sugar_Cane
  161. color: 'f1ffad' # yellowish green
  162.  
  163. sugar:
  164. name: Sugarwater
  165. ingredients: Sugar
  166.  
  167. apple:
  168. name: Apple must
  169. ingredients: Apple
  170.  
  171. berries:
  172. name: Grape must
  173. ingredients: Sweet_Berries
  174. color: RED
  175.  
  176. potato:
  177. name: Potatomash
  178. ingredients: Potato
  179.  
  180. grass:
  181. name: Boiled herbs
  182. ingredients: Grass
  183. color: '99ff66' # bright green
  184.  
  185. rmushroom:
  186. name: Mushroom brew
  187. ingredients: Red_Mushroom
  188. color: 'ff5c33' # amber red
  189.  
  190. bmushroom:
  191. name: Mushroom brew
  192. ingredients: Brown_Mushroom
  193. color: 'c68c53' # brighter brown
  194.  
  195. cocoa:
  196. name: Chocolately brew
  197. ingredients: Cocoa_Beans
  198. color: '804600' # mocca
  199.  
  200. milk:
  201. name: Milky water
  202. ingredients: Milk_Bucket
  203. color: BRIGHT_GREY
  204.  
  205. bl_flow:
  206. name: Blueish brew
  207. ingredients: blue-flowers
  208. color: '0099ff' # sky blue
  209.  
  210. cactus:
  211. name: Agave brew
  212. ingredients: cactus
  213. color: '00b300' # cactus green
  214.  
  215. poi_potato:
  216. name: Poisonous Broth
  217. ingredients: Poisonous_Potato
  218.  
  219. egg:
  220. name: Sticky brew
  221. ingredients: Egg
  222.  
  223.  
  224. oak_sapling:
  225. name: Stringy hebry broth
  226. ingredients: Oak_Sapling
  227.  
  228. vine:
  229. name: Boiled herbs
  230. ingredients: vine
  231. color: '99ff66' # bright green
  232.  
  233. rot_flesh:
  234. name: Foul pest
  235. ingredients: Rotten_Flesh
  236. color: '263300' # brown green
  237.  
  238. melon:
  239. name: Melon juice
  240. ingredients: melon_slice
  241.  
  242. wheat_seeds:
  243. name: Bitter brew
  244. ingredients: Wheat_Seeds
  245.  
  246. melon_seeds:
  247. name: Bitter brew
  248. ingredients: Melon_Seeds
  249.  
  250. pumpkin_seeds:
  251. name: Bitter brew
  252. ingredients: Pumpkin_Seeds
  253.  
  254. bone_meal:
  255. name: Bony Brew
  256. ingredients: bone_meal
  257. color: BRIGHT_GREY
  258.  
  259. cookie:
  260. name: Chocolately sap
  261. ingredients: Cookie
  262. color: '804600' # mocca
  263.  
  264. fer_spid_eye:
  265. name: Fermented Eye
  266. ingredients: Fermented_Spider_Eye
  267.  
  268. ghast_tear:
  269. name: Sad brew
  270. ingredients: ghast_tear
  271.  
  272. snowball:
  273. name: Icewater
  274. ingredients: Snowball
  275.  
  276. Gold_Nugget:
  277. name: Glistering brew
  278. ingredients: Gold_Nugget
  279. color: 'ffd11a' # gold
  280.  
  281. glowstone_dust:
  282. name: Glowing brew
  283. ingredients: Glowstone_Dust
  284. color: 'ffff33' # bright yellow
  285.  
  286. # -- Multiple Ingredients: --
  287. applemead_base:
  288. name: Apple-Sugar brew
  289. ingredients:
  290. - Sugar_Cane/3
  291. - Apple
  292. color: 'e1ff4d' # greenish yellow
  293.  
  294. poi_grass:
  295. name: Boiled acidy herbs
  296. ingredients:
  297. - Grass
  298. - Poisonous_Potato
  299. color: '99ff66' # bright green
  300.  
  301. juniper:
  302. name: Juniper brew
  303. ingredients:
  304. - blue-flowers
  305. - wheat
  306. color: '00ccff' # aqua
  307.  
  308. gin_base:
  309. name: Fruity juniper brew
  310. ingredients:
  311. - blue-flowers
  312. - wheat
  313. - apple
  314. color: '66e0ff' # lighter aqua
  315.  
  316. eggnog_base:
  317. name: Smooth egg mixture
  318. ingredients:
  319. - egg
  320. - sugar
  321. - milk_bucket
  322. color: 'ffecb3' # yellow-orange
  323.  
  324.  
  325.  
  326. # -- Recipes for Potions --
  327.  
  328. # name: Different names for bad/normal/good (Formatting codes possible: such as &6)
  329. # ingredients: List of 'material/amount'
  330. # With an item in your hand, use /brew ItemName to get its material for use in a recipe
  331. # (Item-ids instead of material are not supported by bukkit anymore and will not work)
  332. # A list of materials can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  333. # Plugin items with 'plugin:id' (Currently supporting ExoticGarden, Slimefun, MMOItems, Brewery)
  334. # Or a custom item defined above
  335. # cookingtime: Time in real minutes ingredients have to boil
  336. # distillruns: How often it has to be distilled for full alcohol (0=without distilling)
  337. # distilltime: How long (in seconds) one distill-run takes (0=Default time of 40 sec) MC Default would be 20 sec
  338. # wood: Wood of the barrel 0=any 1=Birch 2=Oak 3=Jungle 4=Spruce 5=Acacia 6=Dark Oak
  339. # The Minecraft barrel is made of oak
  340. # age: Time in Minecraft-days, the potion has to age in a barrel 0=no aging
  341. # color: Color of the potion after distilling/aging.
  342. # Usable Colors: DARK_RED, RED, BRIGHT_RED, ORANGE, YELLOW, PINK, PURPLE, BLUE, CYAN, WATER, TEAL, OLIVE, GREEN, LIME, BLACK, GREY, BRIGHT_GREY, WHITE
  343. # Or RGB colors (hex: for example '99FF33') (with '') (search for "HTML color" on the internet)
  344. # difficulty: 1-10 accuracy needed to get good quality (1 = unaccurate/easy, 10 = very precise/hard)
  345. # alcohol: Absolute amount of alcohol 0-100 in a perfect potion (will be added directly to the player, where 100 means fainting)
  346. # lore: List of additional text on the finished brew. (Formatting codes possible: such as &6)
  347. # Specific lore for quality possible, using + bad, ++ normal, +++ good, added to the front of the line.
  348. # servercommands: List of Commands executed by the Server when drinking the brew
  349. # playercommands: List of Commands executed by the Player when drinking the brew
  350. # drinkmessage: Chat-message to the Player when drinking the Brew
  351. # drinktitle: Title on Screen to the Player when drinking the Brew
  352. # effects: List of effect/level/duration Special potion-effect when drinking, duration in sek.
  353. # Possible Effects: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionEffectType.html
  354. # 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
  355. # Ranges also work high-low, ex. 'POISON/3-1/20-5' for weaker effects at good quality.
  356. # Highest possible Duration: 1638 sec. Instant Effects dont need any duration specified.
  357.  
  358. recipes:
  359. # Example Recipe with every possible entry first:
  360. ex:
  361. name: Bad Example/Example/Good Example
  362. ingredients:
  363. - Diamond/1
  364. - Spruce_Planks/8
  365. - Bedrock/1
  366. - Brewery:Wheatbeer/2
  367. # - ExoticGarden:Grape/3
  368. - ex-item/4
  369. cookingtime: 3
  370. distillruns: 2
  371. distilltime: 60
  372. wood: 4
  373. age: 11
  374. color: DARK_RED
  375. difficulty: 3
  376. alcohol: 14
  377. lore:
  378. - This is an examble brew
  379. - ++Just a normal Example
  380. - This text would be on the brew
  381. - + Smells disgusting
  382. - ++ Smells alright
  383. - +++ Smells really good
  384. servercommands:
  385. - weather clear
  386. playercommands:
  387. - homes
  388. drinkmessage: Tastes good
  389. drinktitle: Warms you from inside
  390. effects:
  391. - FIRE_RESISTANCE/20
  392. - HEAL/1
  393. - WEAKNESS/2-3/50-60
  394. - POISON/1-0/20-0
  395.  
  396. wheatbeer:
  397. name: Skunky Wheatbeer/Wheatbeer/Fine Wheatbeer
  398. ingredients:
  399. - Wheat/3
  400. cookingtime: 8
  401. distillruns: 0
  402. wood: 1
  403. age: 2
  404. color: 'ffb84d' # Orange
  405. difficulty: 1
  406. alcohol: 5
  407. lore: +++ &8Refreshing
  408.  
  409. beer:
  410. name: Skunky Beer/Beer/Fine Beer
  411. ingredients:
  412. - Wheat/6
  413. cookingtime: 8
  414. distillruns: 0
  415. wood: 0
  416. age: 3
  417. color: 'ffd333' # Bright Orange
  418. difficulty: 1
  419. lore:
  420. - +++ &8Crisp taste
  421. alcohol: 6
  422.  
  423. darkbeer:
  424. name: Skunky Darkbeer/Darkbeer/Fine Darkbeer
  425. ingredients:
  426. - Wheat/6
  427. cookingtime: 8
  428. distillruns: 0
  429. wood: 6
  430. age: 8
  431. color: '650013' # Dark Red-Brown
  432. difficulty: 2
  433. lore:
  434. - +++ &8Roasted taste
  435. alcohol: 7
  436.  
  437. wine:
  438. name: Red Wine
  439. ingredients:
  440. - Sweet_Berries/5
  441. cookingtime: 5
  442. distillruns: 0
  443. wood: 0
  444. age: 20
  445. color: RED
  446. difficulty: 4
  447. alcohol: 8
  448. lore:
  449. - '+ &8Harsh'
  450. - '+ &8Corked'
  451. - '++ &8Mellow'
  452. - '+++ &8Full-Bodied'
  453.  
  454. mead:
  455. name: Awkward Mead/Mead/&6Golden Mead
  456. ingredients:
  457. - Sugar_Cane/6
  458. cookingtime: 3
  459. distillruns: 0
  460. wood: 2
  461. age: 4
  462. color: ORANGE
  463. difficulty: 2
  464. lore:
  465. - +++ Has a golden shine
  466. alcohol: 9
  467.  
  468. ap_mead:
  469. name: Apple Mead/Sweet Apple Mead/&6Sweet Golden Apple Mead
  470. ingredients:
  471. - Sugar_Cane/6
  472. - Apple/2
  473. cookingtime: 4
  474. distillruns: 0
  475. wood: 2
  476. age: 4
  477. color: ORANGE
  478. difficulty: 4
  479. alcohol: 11
  480. lore:
  481. - +Is there any Apple in this?
  482. - ++Refreshing taste of Apple
  483. - +++Sweetest hint of Apple
  484. effects:
  485. - WATER_BREATHING/1-2/150
  486.  
  487. cidre:
  488. name: Poor Cidre/Apple Cider/Great Apple Cider
  489. ingredients:
  490. - Apple/14
  491. cookingtime: 7
  492. distillruns: 0
  493. wood: 0
  494. age: 3
  495. color: 'f86820' # Red-Orange
  496. difficulty: 4
  497. alcohol: 7
  498.  
  499. apple_liquor:
  500. name: Sour Apple Liquor/Apple Liquor/Calvados
  501. ingredients:
  502. - Apple/12
  503. cookingtime: 16
  504. distillruns: 3
  505. wood: 5
  506. age: 6
  507. color: BRIGHT_RED
  508. difficulty: 5
  509. alcohol: 14
  510. lore:
  511. - +Sour like Acid
  512. - +++ Good Apple Liquor
  513.  
  514. whiskey:
  515. name: Unsightly Whiskey/Whiskey/Scotch Whiskey
  516. ingredients:
  517. - Wheat/10
  518. cookingtime: 10
  519. distillruns: 2
  520. distilltime: 50
  521. wood: 4
  522. age: 18
  523. color: ORANGE
  524. difficulty: 7
  525. alcohol: 26
  526. lore: '&7Single Malt'
  527.  
  528. rum:
  529. name: Bitter Rum/Spicy Rum/&6Golden Rum
  530. ingredients:
  531. - Sugar_Cane/18
  532. cookingtime: 6
  533. distillruns: 2
  534. distilltime: 30
  535. wood: 2
  536. age: 14
  537. color: DARK_RED
  538. difficulty: 6
  539. alcohol: 30
  540. effects:
  541. - FIRE_RESISTANCE/1/20-100
  542. - POISON/1-0/30-0
  543. lore:
  544. - +&8Too bitter to drink
  545. - ++&8Spiced by the barrel
  546. - +++&eSpiced Gold
  547.  
  548. vodka:
  549. name: Lousy Vodka/Vodka/Russian Vodka
  550. ingredients:
  551. - Potato/10
  552. cookingtime: 15
  553. distillruns: 3
  554. age: 0
  555. color: WHITE
  556. difficulty: 4
  557. alcohol: 20
  558. lore: + &8Almost undrinkable
  559. effects:
  560. - WEAKNESS/15
  561. - POISON/10
  562.  
  563. shroom_vodka:
  564. name: Mushroom Vodka/Mushroom Vodka/Glowing Mushroom Vodka
  565. ingredients:
  566. - Potato/10
  567. - Red_Mushroom/3
  568. - Brown_Mushroom/3
  569. cookingtime: 18
  570. distillruns: 5
  571. age: 0
  572. color: 'ff9999' # Pink-Red
  573. difficulty: 7
  574. alcohol: 18
  575. lore: +++&aGlows in the dark
  576. effects:
  577. - WEAKNESS/80
  578. - CONFUSION/27
  579. - NIGHT_VISION/50-80
  580. - BLINDNESS/12-2
  581. - SLOW/10-3
  582.  
  583. gin:
  584. name: Pale Gin/Gin/Old Tom Gin
  585. ingredients:
  586. - Wheat/9
  587. - blue-flowers/6 # Custom-Item: Blue Orchids or Cornflowers
  588. - Apple/1
  589. cookingtime: 6
  590. distillruns: 2
  591. color: '99ddff' # Very light blue
  592. difficulty: 6
  593. alcohol: 20
  594. lore:
  595. - ++ With the
  596. - ++ taste of juniper
  597. - +++ Perfectly finished off
  598. - +++ with juniper
  599.  
  600. tequila:
  601. name: Mezcal/Tequila/Tequila anejo
  602. ingredients:
  603. - cactus/8
  604. cookingtime: 15
  605. distillruns: 2
  606. color: 'f5f07e' # Green-Orange
  607. difficulty: 5
  608. wood: 1
  609. age: 12
  610. alcohol: 20
  611. lore: Desert spirit
  612.  
  613. absinthe:
  614. name: Poor Absinthe/Absinthe/Strong Absinthe
  615. ingredients:
  616. - Grass/15
  617. cookingtime: 3
  618. distillruns: 6
  619. distilltime: 80
  620. color: GREEN
  621. difficulty: 8
  622. alcohol: 42
  623. effects:
  624. - POISON/15-25
  625. lore: '+++&8High proof liquor'
  626.  
  627. gr_absinthe:
  628. name: Poor Absinthe/Green Absinthe/Bright Green Absinthe
  629. ingredients:
  630. - Grass/17
  631. - Poisonous_Potato/2
  632. cookingtime: 5
  633. distillruns: 6
  634. distilltime: 85
  635. color: LIME
  636. difficulty: 9
  637. alcohol: 46
  638. effects:
  639. - POISON/25-40
  640. - HARM/2
  641. - NIGHT_VISION/40-60
  642. lore: '&aLooks poisonous'
  643.  
  644. potato_soup:
  645. name: Potato soup
  646. ingredients:
  647. - Potato/5
  648. - Grass/3
  649. cookingtime: 3
  650. color: ORANGE
  651. difficulty: 1
  652. effects:
  653. - HEAL/0-1
  654.  
  655. coffee:
  656. name: Stale Coffee/Coffee/Strong Coffee
  657. ingredients:
  658. - Cocoa_Beans/12
  659. - Milk_Bucket/2
  660. cookingtime: 2
  661. color: BLACK
  662. difficulty: 3
  663. lore: + &8Probably a week old
  664. effects:
  665. - REGENERATION/1/2-5
  666. - SPEED/1/30-140
  667.  
  668. eggnog:
  669. name: Egg Liquor/Eggnog/Advocaat
  670. ingredients:
  671. - Egg/5
  672. - Sugar/2
  673. - Milk_Bucket/1
  674. cookingtime: 2
  675. color: 'ffe680'
  676. difficulty: 4
  677. alcohol: 10
  678. wood: 0
  679. age: 3
  680. lore: Made with raw egg
  681.  
  682.  
  683.  
  684.  
  685. # I don't want to add more Recipes to the default config, as they would be public and viewable by users to cheat.
  686. # It is up to the Serveradmin to change and add Recipes, so players cannot cheat from the default config.
  687. # Some suggestions for recipes you could use:
  688.  
  689. # g_vodka:
  690. # name: 'Rancid Vodka/&6Golden Vodka/&6Shimmering Golden Vodka'
  691. # ingredients:
  692. # - Potato/10
  693. # - Gold_Nugget/2
  694. # cookingtime: 18
  695. # distillruns: 3
  696. # age: 0
  697. # color: ORANGE
  698. # difficulty: 6
  699. # alcohol: 20
  700. # effects:
  701. # - WEAKNESS/28
  702. # - POISON/4
  703.  
  704. # fire_whiskey:
  705. # name: Powdery Whiskey/Burning Whiskey/Blazing Whiskey
  706. # ingredients:
  707. # - Wheat/10
  708. # - Blaze_Powder/2
  709. # cookingtime: 12
  710. # distillruns: 3
  711. # distilltime: 55
  712. # wood: 4
  713. # age: 18
  714. # color: ORANGE
  715. # difficulty: 7
  716. # alcohol: 28
  717. # drinkmessage: 'You get a burning feeling in your mouth'
  718.  
  719. # Without Alcohol:
  720.  
  721. # hot_choc:
  722. # name: Hot Chocolate
  723. # ingredients:
  724. # - cookie/3
  725. # cookingtime: 2
  726. # color: DARK_RED
  727. # difficulty: 2
  728. # effects:
  729. # - FAST_DIGGING/40
  730.  
  731. # iced_coffee:
  732. # name: Watery Coffee/Iced Coffee/Strong Iced Coffee
  733. # ingredients:
  734. # - cookie/8
  735. # - snowball/4
  736. # - milk_bucket/1
  737. # cookingtime: 1
  738. # color: BLACK
  739. # difficulty: 4
  740. # effects:
  741. # - REGENERATION/30
  742. # - SPEED/10
  743.  
  744.  
  745. # More Recipe ideas:
  746. # Dandelion Liquor
  747. # Beetroot Spirit,
  748. # Poppy Liquor: Macum/Grand Poppy,
  749. # Bamboo Liquor: Chu Yeh Ching,
  750. # Cachaca,
  751. # Cognac,
  752. # Sake,
  753. # Buorbon,
  754. # Moonshine,
  755. # Different Wines,
  756. # Brandy,
  757. # Amaretto,
  758. # etc. as well as variations like,
  759. # Pumpkin Spice Beer,
  760. # Melon Vodka
  761.  
  762. # There are a lot of items in Minecraft like Vines and items added by plugins that would make great ingredients.
  763.  
  764.  
  765. # -- Plugin Compatibility --
  766.  
  767. # Enable checking of other Plugins (if installed) for Barrel Permissions [true]
  768. useWorldGuard: true
  769. useLWC: true
  770. useGriefPrevention: true
  771. useGMInventories: true
  772.  
  773. # Enable the Logging of Barrel Inventories to LogBlock [true]
  774. useLogBlock: true
  775.  
  776.  
  777. # -- Chat Distortion Settings --
  778.  
  779. # If written Chat is distorted when the Player is Drunk, so that it looks like drunk writing
  780. # How much the chat is distorted depends on how drunk the Player is
  781. # Below are settings for what and how changes in chat occur
  782. enableChatDistortion: true
  783.  
  784. # Log to the Serverlog what the player actually wrote, before his words were altered [false]
  785. logRealChat: false
  786.  
  787. # Text after specified commands will be distorted when drunk (list) [- /gl]
  788. distortCommands:
  789. - /gl
  790. - /global
  791. - /fl
  792. - /s
  793. - /letter
  794. - /g
  795. - /l
  796. - /lokal
  797. - /local
  798. - /mail send
  799. - /m
  800. - /msg
  801. - /w
  802. - /whisper
  803. - /reply
  804. - /r
  805. - /t
  806. - /tell
  807.  
  808. # Distort the Text written on a Sign while drunk [false]
  809. distortSignText: false
  810.  
  811. # Enclose a Chat text with these Letters to bypass Chat Distortion (Use "," as Separator) (list) [- '[,]']
  812. # Chat Example: Hello i am drunk *I am testing Brewery*
  813. distortBypass:
  814. - '*,*'
  815. - '[,]'
  816.  
  817. # words: Words and letters that will be altered when chatting while being drunk.
  818. # Will be processed from first to last and a written sentece is altered in that order.
  819.  
  820. # 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.)
  821. # to: What to replace it with.
  822. # pre: Words and Letters before the wanted word (split with ",")
  823. # 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
  824. # alcohol: 1-100 minimum drunkeness after which this word ist replaced
  825. # percentage: Probability of replacing a Word in percent
  826.  
  827. words:
  828. - replace: s
  829. to: sh
  830. percentage: 90
  831. alcohol: 30
  832.  
  833. - replace: ch
  834. to: sh
  835. pre: u,s,o,a
  836. match: false
  837. alcohol: 10
  838. percentage: 70
  839.  
  840. - replace: h
  841. to: hh
  842. pre: sch,h,t
  843. match: false
  844. percentage: 60
  845. alcohol: 20
  846.  
  847. - replace: th
  848. to: thl
  849. percentage: 40
  850. alcohol: 30
  851.  
  852. - replace: sch
  853. to: shk
  854. percentage: 60
  855. alcohol: 40
  856.  
  857. - replace: u
  858. to: uuh
  859. percentage: 20
  860.  
  861. - replace: y
  862. to: yy
  863. percentage: 60
  864. alcohol: 15
  865.  
  866. - replace: e
  867. to: ee
  868. percentage: 40
  869. alcohol: 15
  870.  
  871. - replace: you
  872. to: u
  873. percentage: 40
  874.  
  875. - replace: u
  876. to: uo
  877. pre: u
  878. match: false
  879. percentage: 60
  880.  
  881. - replace: that
  882. to: taht
  883. percentage: 20
  884. alcohol: 40
  885.  
  886. - replace: p
  887. to: b
  888. percentage: 30
  889.  
  890. - replace: p
  891. to: b
  892. percentage: 70
  893. alcohol: 60
  894.  
  895. - replace: up
  896. to: ubb
  897. percentage: 80
  898. alcohol: 25
  899.  
  900. - replace: o
  901. to: oh
  902. percentage: 20
  903.  
  904. - replace: ei
  905. to: i
  906. percentage: 30
  907. alcohol: 15
  908.  
  909. - replace: b
  910. to: bb
  911. percentage: 80
  912. alcohol: 40
  913.  
  914. - replace: '!!!'
  915. to: '!!!111!!!eleven!1!'
  916. pre: '!'
  917. match: false
  918. percentage: 20
  919. alcohol: 70
  920.  
  921. - replace: '!'
  922. to: '!!'
  923. pre: '!'
  924. match: false
  925. percentage: 90
  926.  
  927. - replace: drunk
  928. to: dhrkunn
  929. pre: are
  930. match: false
  931. percentage: 70
  932. alcohol: 65
  933.  
  934. - replace: walk
  935. to: whhealhk
  936. pre: you can, you can still, you can not
  937. match: false
  938. percentage: 80
  939. alcohol: 30
  940.  
  941. - replace: wtf
  942. to: wft
  943. percentage: 20
  944. alcohol: 40
  945.  
  946. - replace: lol
  947. to: loool
  948. percentage: 80
  949. alcohol: 10
  950.  
  951. - replace: afk
  952. to: aafkayyy
  953. percentage: 30
  954. alcohol: 30
  955.  
  956. - replace: write
  957. to: wreitt
  958. pre: you can,you can still,you can not
  959. match: false
  960. percentage: 80
  961. alcohol: 50
  962.  
  963. - replace: drink
  964. to: booze
  965. percentage: 80
  966. alcohol: 70
  967.  
  968. - replace: '?'
  969. to: '????'
  970. pre: '?'
  971. match: false
  972. percentage: 80
  973. alcohol: 40
  974.  
  975. - replace: -space
  976. to: ''
  977. pre: h,g,w
  978. match: true
  979. alcohol: 10
  980.  
  981. - replace: -space
  982. to: ''
  983. percentage: 30
  984. alcohol: 35
  985.  
  986. - replace: -space
  987. to: ''
  988. percentage: 10
  989.  
  990. - replace: -start
  991. to: dho
  992. percentage: 15
  993. alcohol: 50
  994.  
  995. - replace: -start
  996. to: hhn
  997. percentage: 10
  998. alcohol: 50
  999.  
  1000. - replace: -random
  1001. to: lu
  1002. percentage: 10
  1003.  
  1004. - replace: -random
  1005. to: lug
  1006. percentage: 10
  1007. alcohol: 50
  1008.  
  1009. - replace: -random
  1010. to: blub
  1011. percentage: 20
  1012. alcohol: 80
  1013.  
  1014. - replace: -random
  1015. to: lerg
  1016. percentage: 40
  1017. alcohol: 85
  1018.  
  1019. - replace: -random
  1020. to: gul
  1021. percentage: 40
  1022. alcohol: 80
  1023.  
  1024. - replace: -random
  1025. to: ' '
  1026. percentage: 100
  1027. alcohol: 70
  1028.  
  1029. - replace: -random
  1030. to: ' '
  1031. percentage: 60
  1032. alcohol: 40
  1033.  
  1034. - replace: -random
  1035. to: ' '
  1036. percentage: 50
  1037. alcohol: 30
  1038.  
  1039. - replace: -end
  1040. to: '!'
  1041. percentage: 40
  1042. alcohol: 30
  1043.  
  1044. - replace: -random
  1045. to: ' *hic* '
  1046. percentage: 80
  1047. alcohol: 70
  1048.  
  1049. - replace: -random
  1050. to: ' *hic* '
  1051. percentage: 15
  1052. alcohol: 40
  1053.  
  1054. - replace: -space
  1055. to: ' *hic* '
  1056. percentage: 5
  1057. alcohol: 20
  1058.  
  1059. - replace: -end
  1060. to: ' *hic*'
  1061. percentage: 70
  1062. alcohol: 50
  1063.  
  1064. - replace: -all
  1065. to: '*burp*'
  1066. percentage: 3
  1067. alcohol: 60
  1068.  
  1069. - replace: -all
  1070. to: '*burp*'
  1071. percentage: 6
  1072. alcohol: 80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement