Guest User

Untitled

a guest
Jan 21st, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.78 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. # '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: true
  27.  
  28. # If the Player faints shortly (gets kicked from the server) if he drinks the max amount of alcohol possible [false]
  29. enableKickOnOverdrink: false
  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: 60
  41.  
  42. # Consumable Item/strength. Decreases the alcohol level by <strength> when consumed. (list)
  43. drainItems:
  44. - BREAD/4
  45. - MILK_BUCKET/2
  46.  
  47. # Time (in days) that drunkeness-data stays in memory after a player goes offline, to apply hangover etc. [7]
  48. hangoverDays: 7
  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.5'
  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 or id,data/amount'
  72. # (Item-ids instead of material are deprecated by bukkit and may not work in the future!)
  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. - 264/1
  101. - INK_SACK,3/20
  102. - 5,1/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_ITEM/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. - LONG_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_ITEM/5
  221. - LONG_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. - INK_SACK,3/12
  231. - MILK_BUCKET/2
  232. cookingtime: 2
  233. color: BLACK
  234. difficulty: 3
  235. effects:
  236. - REGENERATION/1/2-5
  237. - SPEED/1/30-140
  238.  
  239. # More Recipes ideas: Cachaca, Gin, Whiskey, Tequila, Cider, etc. as well as high quality abbreviations like golden vodka etc.
  240. # I will not add more Recipes to the default config, as they would be public and viewable by users to cheat.
  241. # It is up to the Serveradmin to change and add Recipes, so players cannot cheat from the default config.
  242.  
  243.  
  244.  
  245. # cooked: EVERY possible ingredient and the names for the originating potions after fermenting:
  246. # [Example] MATERIAL_or_id: Name after cooking
  247.  
  248. cooked:
  249. WHEAT: Fermented wheat
  250. SUGAR_CANE: Sugar brew
  251. APPLE: Apple cider
  252. POTATO_ITEM: Potatomash
  253. LONG_GRASS: Boiled herbs
  254. RED_MUSHROOM: Mushroom brew
  255. INK_SACK: Colored brew
  256. MILK_BUCKET: Milky water
  257.  
  258.  
  259.  
  260. # -- Plugin Compatibility --
  261.  
  262. # Enable checking of other Plugins (if installed) for Barrel Permissions [true]
  263. useWorldGuard: true
  264. useLWC: true
  265. useGriefPrevention: true
  266.  
  267. # Enable the Logging of Barrel Inventories to LogBlock [true]
  268. useLogBlock: true
  269.  
  270.  
  271. # -- Chat Distortion Settings --
  272.  
  273. # If written Chat is distorted when the Player is Drunk,
  274. # so that it looks like drunk writing
  275. # How much the chat is distorted depends on how drunk the Player is
  276. # Below are settings for what and how changes in chat occur
  277. enableChatDistortion: true
  278.  
  279. # Log to the Serverlog what the player actually wrote, before his words were altered [false]
  280. logRealChat: false
  281.  
  282. # Text after specified commands will be distorted when drunk (list) [- /gl]
  283. distortCommands:
  284. - /gl
  285. - /global
  286. - /fl
  287. - /s
  288. - /letter
  289. - /g
  290. - /l
  291. - /lokal
  292. - /local
  293. - /mail send
  294. - /m
  295. - /msg
  296. - /w
  297. - /whisper
  298. - /reply
  299. - /r
  300. - /t
  301. - /tell
  302.  
  303. # Distort the Text written on a Sign while drunk [false]
  304. distortSignText: false
  305.  
  306. # Enclose a Chat text with these Letters to bypass Chat Distortion (Use "," as Separator) (list) [- '[,]']
  307. # Chat Example: Hello i am drunk *I am testing Brewery*
  308. distortBypass:
  309. - '*,*'
  310. - '[,]'
  311.  
  312. # words: Words and letters that will be altered when chatting while being drunk.
  313. # Will be processed from first to last and a written sentece is altered in that order.
  314.  
  315. # 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.)
  316. # to: What to replace it with.
  317. # pre: Words and Letters before the wanted word (split with ",")
  318. # 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
  319. # alcohol: 1-100 minimum drunkeness after which this word ist replaced
  320. # percentage: Probability of replacing a Word in percent
  321.  
  322. words:
  323. - replace: s
  324. to: sh
  325. percentage: 90
  326. alcohol: 30
  327.  
  328. - replace: ch
  329. to: sh
  330. pre: u,s,o,a
  331. match: false
  332. alcohol: 10
  333. percentage: 70
  334.  
  335. - replace: h
  336. to: hh
  337. pre: sch,h,t
  338. match: false
  339. percentage: 60
  340. alcohol: 20
  341.  
  342. - replace: th
  343. to: thl
  344. percentage: 40
  345. alcohol: 30
  346.  
  347. - replace: sch
  348. to: shk
  349. percentage: 60
  350. alcohol: 40
  351.  
  352. - replace: u
  353. to: uuh
  354. percentage: 20
  355.  
  356. - replace: y
  357. to: yy
  358. percentage: 60
  359. alcohol: 15
  360.  
  361. - replace: e
  362. to: ee
  363. percentage: 40
  364. alcohol: 15
  365.  
  366. - replace: you
  367. to: u
  368. percentage: 40
  369.  
  370. - replace: u
  371. to: uo
  372. pre: u
  373. match: false
  374. percentage: 60
  375.  
  376. - replace: that
  377. to: taht
  378. percentage: 20
  379. alcohol: 40
  380.  
  381. - replace: p
  382. to: b
  383. percentage: 30
  384.  
  385. - replace: p
  386. to: b
  387. percentage: 70
  388. alcohol: 60
  389.  
  390. - replace: up
  391. to: ubb
  392. percentage: 80
  393. alcohol: 25
  394.  
  395. - replace: o
  396. to: oh
  397. percentage: 20
  398.  
  399. - replace: ei
  400. to: i
  401. percentage: 30
  402. alcohol: 15
  403.  
  404. - replace: b
  405. to: bb
  406. percentage: 80
  407. alcohol: 40
  408.  
  409. - replace: '!!!'
  410. to: '!!!111!!!eleven!1!'
  411. pre: '!'
  412. match: false
  413. percentage: 20
  414. alcohol: 70
  415.  
  416. - replace: '!'
  417. to: '!!'
  418. pre: '!'
  419. match: false
  420. percentage: 90
  421.  
  422. - replace: drunk
  423. to: dhrkunn
  424. pre: are
  425. match: false
  426. percentage: 70
  427. alcohol: 65
  428.  
  429. - replace: walk
  430. to: whhealhk
  431. pre: you can, you can still, you can not
  432. match: false
  433. percentage: 80
  434. alcohol: 30
  435.  
  436. - replace: wtf
  437. to: wft
  438. percentage: 20
  439. alcohol: 40
  440.  
  441. - replace: lol
  442. to: loool
  443. percentage: 80
  444. alcohol: 10
  445.  
  446. - replace: afk
  447. to: aafkayyy
  448. percentage: 30
  449. alcohol: 30
  450.  
  451. - replace: write
  452. to: wreitt
  453. pre: you can,you can still,you can not
  454. match: false
  455. percentage: 80
  456. alcohol: 50
  457.  
  458. - replace: drink
  459. to: booze
  460. percentage: 80
  461. alcohol: 70
  462.  
  463. - replace: '?'
  464. to: '????'
  465. pre: '?'
  466. match: false
  467. percentage: 80
  468. alcohol: 40
  469.  
  470. - replace: -space
  471. to: ''
  472. pre: h,g,w
  473. match: true
  474. alcohol: 10
  475.  
  476. - replace: -space
  477. to: ''
  478. percentage: 30
  479. alcohol: 35
  480.  
  481. - replace: -space
  482. to: ''
  483. percentage: 10
  484.  
  485. - replace: -start
  486. to: dho
  487. percentage: 15
  488. alcohol: 50
  489.  
  490. - replace: -start
  491. to: hhn
  492. percentage: 10
  493. alcohol: 50
  494.  
  495. - replace: -random
  496. to: lu
  497. percentage: 10
  498.  
  499. - replace: -random
  500. to: lug
  501. percentage: 10
  502. alcohol: 50
  503.  
  504. - replace: -random
  505. to: blub
  506. percentage: 20
  507. alcohol: 80
  508.  
  509. - replace: -random
  510. to: lerg
  511. percentage: 40
  512. alcohol: 85
  513.  
  514. - replace: -random
  515. to: gul
  516. percentage: 40
  517. alcohol: 80
  518.  
  519. - replace: -random
  520. to: ' '
  521. percentage: 100
  522. alcohol: 70
  523.  
  524. - replace: -random
  525. to: ' '
  526. percentage: 60
  527. alcohol: 40
  528.  
  529. - replace: -random
  530. to: ' '
  531. percentage: 50
  532. alcohol: 30
  533.  
  534. - replace: -end
  535. to: '!'
  536. percentage: 40
  537. alcohol: 30
  538.  
  539. - replace: -random
  540. to: ' *hic* '
  541. percentage: 80
  542. alcohol: 70
  543.  
  544. - replace: -random
  545. to: ' *hic* '
  546. percentage: 15
  547. alcohol: 40
  548.  
  549. - replace: -space
  550. to: ' *hic* '
  551. percentage: 5
  552. alcohol: 20
  553.  
  554. - replace: -end
  555. to: ' *hic*'
  556. percentage: 70
  557. alcohol: 50
  558.  
  559. - replace: -all
  560. to: '*burp*'
  561. percentage: 3
  562. alcohol: 60
  563.  
  564. - replace: -all
  565. to: '*burp*'
  566. percentage: 6
  567. alcohol: 80
Add Comment
Please, Sign In to add comment