Advertisement
C4BR3R4

Brewery 1.5 - config.yml

Aug 1st, 2016
575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 13.57 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: es
  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: spawn'
  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: 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: 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: false
  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.    1:
  96.       name: Paulaner Clasica/Paulaner Naturtrüb/Paulaner Premium
  97.       ingredients:
  98.       - WHEAT/3
  99.       cookingtime: 8
  100.       distillruns: 0
  101.       wood: 1
  102.       age: 2
  103.       color: BRIGHT_GREY
  104.       difficulty: 1
  105.       alcohol: 5
  106.    2:
  107.       name: Cerveza Belga Clasica/Cerveza Belga/Cerveza Belga Calidad Superior
  108.       ingredients:
  109.       - WHEAT/6
  110.       cookingtime: 8
  111.       distillruns: 0
  112.       wood: 0
  113.       age: 3
  114.       color: ORANGE
  115.       difficulty: 1
  116.       alcohol: 6
  117.    3:
  118.       name: Cerveza Malta Cremosa/Cerveza Malta/Cerveza Malta Suave
  119.       ingredients:
  120.       - WHEAT/6
  121.       cookingtime: 8
  122.       distillruns: 0
  123.       wood: 4
  124.       age: 8
  125.       color: BLACK
  126.       difficulty: 2
  127.       alcohol: 7
  128.    4:
  129.       name: Hidromiel Espesa/HidroMiel/&6HidroMiel Oro
  130.       ingredients:
  131.       - SUGAR_CANE/6
  132.       cookingtime: 3
  133.       distillruns: 0
  134.       wood: 2
  135.       age: 4
  136.       color: ORANGE
  137.       difficulty: 2
  138.       alcohol: 9
  139.    5:
  140.       name: Licor de manzana/Licor dulce de manzana/&6Licor dulce de manzana dorada
  141.       ingredients:
  142.       - SUGAR_CANE/6
  143.       - APPLE/2
  144.       cookingtime: 4
  145.       distillruns: 0
  146.       wood: 2
  147.       age: 4
  148.       color: ORANGE
  149.       difficulty: 4
  150.       alcohol: 12
  151.       effects:
  152.      - WATER_BREATHINGX/150
  153.    6:
  154.       name: Ron amargo/Ron/&6Ron añejo
  155.       ingredients:
  156.       - SUGAR_CANE/14
  157.       cookingtime: 5
  158.       distillruns: 2
  159.       wood: 2
  160.       age: 14
  161.       color: DARK_RED
  162.       difficulty: 6
  163.       alcohol: 30
  164.       effects:
  165.      - FIRE_RESISTANCE/100
  166.    7:
  167.       name: Vodka asqueroso/Vodka/Vodka Ruso
  168.       ingredients:
  169.       - POTATO_ITEM/10
  170.       cookingtime: 15
  171.       distillruns: 3
  172.       age: 0
  173.       color: BRIGHT_GREY
  174.       difficulty: 4
  175.       alcohol: 20
  176.       effects:
  177.      - WEAKNESS/15
  178.       - POISON/10
  179.    8:
  180.       name: Absenta asquerosa/Absenta/Absenta fuerte
  181.       ingredients:
  182.      - LONG_GRASS/15
  183.       cookingtime: 3
  184.       distillruns: 6
  185.       color: GREEN
  186.       difficulty: 8
  187.       alcohol: 45
  188.       effects:
  189.      - POISON/20
  190.    9:
  191.       name: Sopa de Manzana
  192.       ingredients:
  193.      - POTATO_ITEM/5
  194.       - LONG_GRASS/3
  195.       cookingtime: 3
  196.       color: PINK
  197.       difficulty: 1
  198.       effects:
  199.      - HEAL/1
  200.    10:
  201.       name: Licor de hierbas
  202.       ingredients:
  203.      - SEEDS/3
  204.       - LONG_GRASS/2
  205.       cookingtime: 3
  206.       distillruns: 2
  207.       wood: 4
  208.       age: 1
  209.       color: GREEN
  210.       difficulty: 3
  211.       alcohol: 15
  212.       effects:
  213.      - HEAL/1
  214.       - SPEED/1
  215.    11:
  216.       name: Tequila malo/ Tequila/ Tequila de calidad
  217.       ingredients:
  218.      - LONG_GRASS/3
  219.       - SUGAR/1
  220.       cookingtime: 3
  221.       distillruns: 2
  222.       wood: 1
  223.       age: 3
  224.       color: BRIGHT_GREY
  225.       difficulty: 4
  226.       alcohol: 24
  227.       effects:
  228.      - WEAKNESS/10
  229.       - POISON/5
  230.  
  231. # More Recipes ideas: Cachaca, Gin, Whiskey, Tequila, Cider, etc. as well as high quality abbreviations like golden vodka etc.
  232. # I will not add more Recipes to the default config, as they would be public and viewable by users to cheat.
  233. # It is up to the Serveradmin to change and add Recipes, so players cannot cheat from the default config.
  234.  
  235.  
  236.  
  237. # cooked: EVERY possible ingredient and the names for the originating potions after fermenting:
  238. # [Example] MATERIAL_or_id: Name after cooking
  239.  
  240. cooked:
  241.    WHEAT: Trigo fermentado
  242.    SUGAR_CANE: Agua dulce
  243.    APPLE: Manzana ácida
  244.    POTATO_ITEM: Puré de Patata
  245.    LONG_GRASS:
  246.    RED_MUSHROOM: Brebaje verrugoso
  247.    INK_SACK: Brebaje oscuro
  248.    MILK_BUCKET: Leche fermentada
  249.  
  250.  
  251.  
  252. # -- Plugin Compatibility --
  253.  
  254. # Enable checking of other Plugins (if installed) for Barrel Permissions [true]
  255. useWorldGuard: true
  256. useLWC: true
  257. useGriefPrevention: true
  258.  
  259. # Enable the Logging of Barrel Inventories to LogBlock [true]
  260. useLogBlock: true
  261.  
  262.  
  263. # -- Chat Distortion Settings --
  264.  
  265. # If written Chat is distorted when the Player is Drunk,
  266. # so that it looks like drunk writing
  267. # How much the chat is distorted depends on how drunk the Player is
  268. # Below are settings for what and how changes in chat occur
  269. enableChatDistortion: true
  270.  
  271. # Log to the Serverlog what the player actually wrote, before his words were altered [false]
  272. logRealChat: false
  273.  
  274. # Text after specified commands will be distorted when drunk (list) [- /gl]
  275. distortCommands:
  276. - /gl
  277. - /global
  278. - /fl
  279. - /s
  280. - /letter
  281. - /g
  282. - /l
  283. - /lokal
  284. - /local
  285. - /mail send
  286. - /m
  287. - /msg
  288. - /w
  289. - /whisper
  290. - /reply
  291. - /r
  292. - /t
  293. - /tell
  294.  
  295. # Distort the Text written on a Sign while drunk [false]
  296. distortSignText: false
  297.  
  298. # Enclose a Chat text with these Letters to bypass Chat Distortion (Use "," as Separator) (list) [- '[,]']
  299. # Chat Example: Hello i am drunk *I am testing Brewery*
  300. distortBypass:
  301. - '*,*'
  302. - '[,]'
  303.  
  304. # words: Words and letters that will be altered when chatting while being drunk.
  305. # Will be processed from first to last and a written sentece is altered in that order.
  306.  
  307. # 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.)
  308. # to: What to replace it with.
  309. # pre: Words and Letters before the wanted word (split with ",")
  310. # 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
  311. # alcohol: 1-100 minimum drunkeness after which this word ist replaced
  312. # percentage: Probability of replacing a Word in percent
  313.  
  314. words:
  315. -  replace: s
  316.    to: sh
  317.    percentage: 90
  318.    alcohol: 30
  319.  
  320. -  replace: ch
  321.    to: sh
  322.    pre: u,s,o,a
  323.    match: false
  324.    alcohol: 10
  325.    percentage: 70
  326.  
  327. -  replace: h
  328.    to: hh
  329.    pre: sch,h,t
  330.    match: false
  331.    percentage: 60
  332.    alcohol: 20
  333.  
  334. -  replace: th
  335.    to: thl
  336.    percentage: 40
  337.    alcohol: 30
  338.  
  339. -  replace: sch
  340.    to: shk
  341.    percentage: 60
  342.    alcohol: 40
  343.  
  344. -  replace: u
  345.    to: uuh
  346.    percentage: 20
  347.  
  348. -  replace: y
  349.    to: yy
  350.    percentage: 60
  351.    alcohol: 15
  352.  
  353. -  replace: e
  354.    to: ee
  355.    percentage: 40
  356.    alcohol: 15
  357.  
  358. -  replace: you
  359.    to: u
  360.    percentage: 40
  361.  
  362. -  replace: u
  363.    to: uo
  364.    pre: u
  365.    match: false
  366.    percentage: 60
  367.  
  368. -  replace: that
  369.    to: taht
  370.    percentage: 20
  371.    alcohol: 40
  372.  
  373. -  replace: p
  374.    to: b
  375.    percentage: 30
  376.  
  377. -  replace: p
  378.    to: b
  379.    percentage: 70
  380.    alcohol: 60
  381.  
  382. -  replace: up
  383.    to: ubb
  384.    percentage: 80
  385.    alcohol: 25
  386.  
  387. -  replace: o
  388.    to: oh
  389.    percentage: 20
  390.  
  391. -  replace: ei
  392.    to: i
  393.    percentage: 30
  394.    alcohol: 15
  395.  
  396. -  replace: b
  397.    to: bb
  398.    percentage: 80
  399.    alcohol: 40
  400.  
  401. -  replace: '!!!'
  402.    to: '!!!111!!!eleven!1!'
  403.    pre: '!'
  404.    match: false
  405.    percentage: 20
  406.    alcohol: 70
  407.  
  408. -  replace: '!'
  409.    to: '!!'
  410.    pre: '!'
  411.    match: false
  412.    percentage: 90
  413.  
  414. -  replace: drunk
  415.    to: dhrkunn
  416.    pre: are
  417.    match: false
  418.    percentage: 70
  419.    alcohol: 65
  420.  
  421. -  replace: walk
  422.    to: whhealhk
  423.    pre: you can, you can still, you can not
  424.    match: false
  425.    percentage: 80
  426.    alcohol: 30
  427.  
  428. -  replace: wtf
  429.    to: wft
  430.    percentage: 20
  431.    alcohol: 40
  432.  
  433. -  replace: lol
  434.    to: loool
  435.    percentage: 80
  436.    alcohol: 10
  437.  
  438. -  replace: afk
  439.    to: aafkayyy
  440.    percentage: 30
  441.    alcohol: 30
  442.  
  443. -  replace: write
  444.    to: wreitt
  445.    pre: you can,you can still,you can not
  446.    match: false
  447.    percentage: 80
  448.    alcohol: 50
  449.  
  450. -  replace: drink
  451.    to: booze
  452.    percentage: 80
  453.    alcohol: 70
  454.  
  455. -  replace: '?'
  456.    to: '????'
  457.    pre: '?'
  458.    match: false
  459.    percentage: 80
  460.    alcohol: 40
  461.  
  462. -  replace: -space
  463.    to: ''
  464.    pre: h,g,w
  465.    match: true
  466.    alcohol: 10
  467.  
  468. -  replace: -space
  469.    to: ''
  470.    percentage: 30
  471.    alcohol: 35
  472.  
  473. -  replace: -space
  474.    to: ''
  475.    percentage: 10
  476.  
  477. -  replace: -start
  478.    to: dho
  479.    percentage: 15
  480.    alcohol: 50
  481.  
  482. -  replace: -start
  483.    to: hhn
  484.    percentage: 10
  485.    alcohol: 50
  486.  
  487. -  replace: -random
  488.    to: lu
  489.    percentage: 10
  490.  
  491. -  replace: -random
  492.    to: lug
  493.    percentage: 10
  494.    alcohol: 50
  495.  
  496. -  replace: -random
  497.    to: blub
  498.    percentage: 20
  499.    alcohol: 80
  500.  
  501. -  replace: -random
  502.    to: lerg
  503.    percentage: 40
  504.    alcohol: 85
  505.  
  506. -  replace: -random
  507.    to: gul
  508.    percentage: 40
  509.    alcohol: 80
  510.  
  511. -  replace: -random
  512.    to: ' '
  513.    percentage: 100
  514.    alcohol: 70
  515.  
  516. -  replace: -random
  517.    to: ' '
  518.    percentage: 60
  519.    alcohol: 40
  520.  
  521. -  replace: -random
  522.    to: ' '
  523.    percentage: 50
  524.    alcohol: 30
  525.  
  526. -  replace: -end
  527.    to: '!'
  528.    percentage: 40
  529.    alcohol: 30
  530.  
  531. -  replace: -random
  532.    to: ' *hic* '
  533.    percentage: 80
  534.    alcohol: 70
  535.  
  536. -  replace: -random
  537.    to: ' *hic* '
  538.    percentage: 15
  539.    alcohol: 40
  540.  
  541. -  replace: -space
  542.    to: ' *hic* '
  543.    percentage: 5
  544.    alcohol: 20
  545.  
  546. -  replace: -end
  547.    to: ' *hic*'
  548.    percentage: 70
  549.    alcohol: 50
  550.  
  551. -  replace: -all
  552.    to: '*burp*'
  553.    percentage: 3
  554.    alcohol: 60
  555.  
  556. -  replace: -all
  557.    to: '*burp*'
  558.    percentage: 6
  559.    alcohol: 80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement