Brewery/config.yml

488 lines
11 KiB
YAML
Raw Normal View History

2013-10-27 19:25:29 +01:00
# config for Brewery.jar
2013-05-28 16:25:06 +02:00
2013-06-30 23:41:37 +02:00
2013-11-17 15:26:28 +01:00
# -- Settings --
2013-10-27 19:25:29 +01:00
# Defaults are written in []
# Deleting of single settings disables them
2013-06-30 23:41:37 +02:00
2013-10-27 19:25:29 +01:00
# Languagefile to be used (found in plugins/Brewery/languages)
2013-10-25 15:24:16 +02:00
language: en
2013-09-11 14:45:46 +02:00
2013-10-27 19:25:29 +01:00
# If the player wakes up at /home when logging in after excessive drinking (/home plugin must be installed!) [true]
2013-05-28 16:25:06 +02:00
enableHome: true
2013-10-27 19:25:29 +01:00
# Type of the home-teleport: ['cmd: home']
# bed = Player will be teleported to his spawn bed
# SamplePlugin = installed home plugin. Supports: ManagerXL. If not available:
# 'cmd: home' = /home will be executed by the player. He has to have permissions for it without any delay!
# 'cmd: spawn' = /spawn will be executed by the player.
# 'cmd: whatever' = /whatever will be executed by the player.
2013-05-28 16:25:06 +02:00
homeType: 'cmd: home'
2013-10-27 19:25:29 +01:00
# 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)
# The Player wakes at the nearest of two random places of his world [true]
2013-05-28 16:25:06 +02:00
enableWake: true
2013-10-27 19:25:29 +01:00
# If the Player may get some logins denied, when his character is drunk [true]
2013-05-28 16:25:06 +02:00
enableLoginDisallow: true
2013-10-27 19:25:29 +01:00
# If the Player faints (gets kicked) for some minutes if he overdrinks [true]
2013-05-28 16:25:06 +02:00
enableKickOnOverdrink: true
2013-10-27 19:25:29 +01:00
# If the Player vomits on high drunkeness (drops item defined below) [true]
# The item can not be collected and stays on the ground until it despawns. (Warning: May be collected after Server restart!)
2013-07-03 00:31:34 +02:00
enablePuke: true
2013-10-27 19:25:29 +01:00
# Item that is dropped multiple times uncollectable when puking [SOUL_SAND]
2013-07-03 00:31:34 +02:00
pukeItem: SOUL_SAND
2013-11-17 15:26:28 +01:00
# Consumable Item/strength. Decreases the alcohol level by <strength> when consumed. (list)
drainItems:
- BREAD/4
- MILK_BUCKET/2
2013-10-27 19:25:29 +01:00
# Time (in days) that drunkeness-data stays in memory after a player goes offline, to apply hangover etc. [7]
2013-09-01 23:47:01 +02:00
hangoverDays: 7
2013-10-27 19:25:29 +01:00
# Color the Item information (lore) depending on quality while it is 1. in a barrel and/or 2. in a brewing stand [true, false]
colorInBarrels: true
2013-08-30 21:19:49 +02:00
colorInBrewer: false
# 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]
openLargeBarrelEverywhere: true
2013-10-27 19:25:29 +01:00
# Autosave interval in minutes [3]
2013-06-05 20:06:44 +02:00
autosave: 3
2013-09-05 20:05:19 +02:00
# Config Version
version: '1.2'
2013-09-05 20:05:19 +02:00
2013-06-05 20:06:44 +02:00
2013-11-17 15:26:28 +01:00
# -- Recipes for Potions --
2013-06-30 23:41:37 +02:00
2013-10-27 19:25:29 +01:00
# name: Different names for bad/normal/good (Formatting codes possible: such as &6)
2014-08-20 17:40:10 +02:00
# ingredients: List of 'material or id,data/amount' (Item-ids instead of material are deprecated by bukkit and may not work in the future!)
# A list of materials can be found here: http://jd.bukkit.org/beta/apidocs/org/bukkit/Material.html
# You can specify a data value, omitting it will ignore the data value of the added ingredient
2013-10-27 19:25:29 +01:00
# cookingtime: Time in real minutes ingredients have to boil
# distillruns: How often it has to be distilled for full alcohol (0=without distilling)
# wood: Wood of the barrel 0=any 1=Birch 2=Oak 3=Jungle 4=Spruce
# age: Time in Minecraft-days, the potion has to age in a barrel 0=no aging
# color: Color of the potion after distilling/aging. DARK_RED, RED, BRIGHT_RED, ORANGE, PINK, BLUE, CYAN, WATER, GREEN, BLACK, GREY, BRIGHT_GREY
# difficulty: 1-10 accuracy needed to get good quality (1 = unaccurate/easy, 10 = very precise/hard)
# alcohol: Absolute amount of alcohol 0-100 in a perfect potion (will be added directly to the player, where 100 means fainting)
# effects: List of effect/duration Special potion-effect when drinking, duration in sek. Suffix name with 'X' to hide effect from label. Sample: POISONX/10
# (WEAKNESS, INCREASE_DAMAGE, SLOW and SPEED are always hidden.) Possible Effects: http://jd.bukkit.org/rb/apidocs/org/bukkit/potion/PotionEffectType.html
# instant effects (such as HEAL) _must!_ have defined the level instead of the duration!
recipes:
1:
2013-10-27 19:25:29 +01:00
name: Skunky Wheatbeer/Wheatbeer/Fine Wheatbeer
ingredients:
2013-04-28 23:57:41 +02:00
- WHEAT/3
cookingtime: 8
2013-04-28 23:57:41 +02:00
distillruns: 0
wood: 1
2013-04-28 23:57:41 +02:00
age: 2
color: BRIGHT_GREY
difficulty: 1
alcohol: 5
2:
2013-10-27 19:25:29 +01:00
name: Skunky Beer/Beer/Fine Beer
ingredients:
- WHEAT/6
cookingtime: 8
2013-04-28 23:57:41 +02:00
distillruns: 0
wood: 0
age: 3
color: ORANGE
difficulty: 1
2013-04-28 23:57:41 +02:00
alcohol: 6
3:
2013-10-27 19:25:29 +01:00
name: Skunky Darkbeer/Darkbeer/Fine Darkbeer
ingredients:
- WHEAT/6
cookingtime: 8
2013-04-28 23:57:41 +02:00
distillruns: 0
wood: 4
2013-04-28 23:57:41 +02:00
age: 8
color: BLACK
difficulty: 2
alcohol: 7
4:
2013-10-27 19:25:29 +01:00
name: Awkward Mead/Mead/&6Golden Mead
ingredients:
- SUGAR_CANE/6
cookingtime: 3
2013-04-28 23:57:41 +02:00
distillruns: 0
wood: 2
2013-04-28 23:57:41 +02:00
age: 4
color: ORANGE
difficulty: 2
2013-05-10 00:01:28 +02:00
alcohol: 9
5:
2013-10-27 19:25:29 +01:00
name: Apple Mead/Sweet Apple Mead/&6Sweet Golden Apple Mead
ingredients:
- SUGAR_CANE/6
- APPLE/2
cookingtime: 4
2013-04-28 23:57:41 +02:00
distillruns: 0
wood: 2
2013-04-28 23:57:41 +02:00
age: 4
2013-09-05 23:02:45 +02:00
color: ORANGE
difficulty: 4
2013-04-28 23:57:41 +02:00
alcohol: 12
2013-08-14 20:08:55 +02:00
effects:
2013-08-15 18:17:05 +02:00
- WATER_BREATHINGX/150
6:
2013-10-27 19:25:29 +01:00
name: Bitter Rum/Spicy Rum/&6Golden Rum
ingredients:
- SUGAR_CANE/14
cookingtime: 5
2013-04-28 23:57:41 +02:00
distillruns: 2
wood: 2
2013-04-28 23:57:41 +02:00
age: 14
color: DARK_RED
difficulty: 6
2013-05-10 00:01:28 +02:00
alcohol: 30
2013-08-14 20:08:55 +02:00
effects:
- FIRE_RESISTANCE/100
2013-04-28 23:57:41 +02:00
7:
2013-10-27 19:25:29 +01:00
name: Lousy Vodka/Vodka/Russian Vodka
2013-05-02 10:06:07 +02:00
ingredients:
- POTATO_ITEM/10
cookingtime: 15
distillruns: 3
age: 0
color: BRIGHT_GREY
difficulty: 4
2013-05-10 00:01:28 +02:00
alcohol: 20
2013-08-14 20:08:55 +02:00
effects:
- WEAKNESS/15
2013-08-15 18:17:05 +02:00
- POISON/10
2013-05-02 10:06:07 +02:00
8:
2013-10-27 22:54:48 +01:00
name: Poor Absinthe/Absinthe/Strong Absinthe
2013-05-02 10:06:07 +02:00
ingredients:
- LONG_GRASS/15
cookingtime: 3
distillruns: 6
color: GREEN
difficulty: 8
2013-05-10 00:01:28 +02:00
alcohol: 45
2013-08-14 20:08:55 +02:00
effects:
2013-08-15 18:17:05 +02:00
- POISON/20
2013-05-02 10:06:07 +02:00
9:
2013-10-27 19:25:29 +01:00
name: Potato soup
2013-04-28 23:57:41 +02:00
ingredients:
- POTATO_ITEM/5
- LONG_GRASS/3
cookingtime: 3
color: PINK
difficulty: 1
2013-08-14 20:08:55 +02:00
effects:
2013-08-19 17:14:43 +02:00
- HEAL/1
2013-05-28 16:25:06 +02:00
2013-10-27 19:25:29 +01:00
# cooked: EVERY possible ingredient and the names for the originating potions after fermenting:
2014-08-20 17:40:10 +02:00
# [Example] MATERIAL_or_id: Name after cooking
2013-05-28 16:25:06 +02:00
cooked:
2013-10-27 19:25:29 +01:00
WHEAT: Fermented wheat
SUGAR_CANE: Sugar brew
APPLE: Apple cider
POTATO_ITEM: Potatomash
LONG_GRASS: Boiled herbs
RED_MUSHROOM: Mushroom brew
2013-05-28 16:25:06 +02:00
# -- Plugin Compatibility --
# Enable checking of other Plugins (if installed) for Barrel Permissions [true]
useWorldGuard: true
useLWC: true
useGriefPrevention: true
2014-05-07 16:12:17 +02:00
# Enable the Logging of Barrel Inventories to LogBlock [true]
useLogBlock: true
2013-11-17 15:26:28 +01:00
# -- Chat Distortion Settings --
# Log to the Serverlog what the player actually wrote, before his words were altered [false]
logRealChat: false
# Text after specified commands will be distorted when drunk (list) [- /gl]
distortCommands:
- /gl
- /global
- /fl
- /s
- /letter
# Distort the Text written on a Sign while drunk [false]
distortSignText: false
# Enclose a text with these Letters to bypass Chat Distortion (Use "," as Separator) (list) [- '[,]']
2013-11-17 15:26:28 +01:00
distortBypass:
- '*,*'
- '[,]'
2013-10-27 19:25:29 +01:00
# words: Words and letters that will be altered when chatting while being drunk.
# Will be processed from first to last and a written sentece is altered in that order.
2013-06-30 23:41:37 +02:00
2013-10-27 19:25:29 +01:00
# 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.)
# to: What to replace it with.
# pre: Words and Letters before the wanted word (split with ",")
# 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
# alcohol: 1-100 minimum drunkeness after which this word ist replaced
# percentage: Probability of replacing a Word in percent
2013-05-28 16:25:06 +02:00
2013-05-01 21:47:41 +02:00
words:
2013-10-27 19:25:29 +01:00
- replace: s
to: sh
percentage: 90
alcohol: 30
2013-05-28 16:25:06 +02:00
- replace: ch
2013-10-27 19:25:29 +01:00
to: sh
2013-05-28 16:25:06 +02:00
pre: u,s,o,a
match: false
alcohol: 10
percentage: 70
2013-05-02 10:06:07 +02:00
2013-05-28 16:25:06 +02:00
- replace: h
to: hh
pre: sch,h,t
match: false
percentage: 60
alcohol: 20
2013-10-27 19:25:29 +01:00
- replace: th
to: thl
percentage: 40
alcohol: 30
- replace: sch
to: shk
percentage: 60
alcohol: 40
2013-05-28 16:25:06 +02:00
- replace: u
to: uuh
percentage: 20
2013-10-27 19:25:29 +01:00
- replace: y
to: yy
percentage: 60
alcohol: 15
- replace: e
to: ee
percentage: 40
alcohol: 15
- replace: you
to: u
percentage: 40
2013-06-30 23:41:37 +02:00
- replace: u
to: uo
pre: u
match: false
percentage: 60
2013-10-27 19:25:29 +01:00
- replace: that
to: taht
2013-06-30 23:41:37 +02:00
percentage: 20
2013-05-28 16:25:06 +02:00
alcohol: 40
2013-06-30 23:41:37 +02:00
- replace: p
to: b
percentage: 30
- replace: p
to: b
percentage: 70
alcohol: 60
- replace: up
to: ubb
percentage: 80
2013-10-27 19:25:29 +01:00
alcohol: 25
2013-06-30 23:41:37 +02:00
- replace: o
to: oh
percentage: 20
- replace: ei
to: i
2013-10-27 19:25:29 +01:00
percentage: 30
alcohol: 15
2013-06-30 23:41:37 +02:00
- replace: b
to: bb
percentage: 80
alcohol: 40
2013-05-28 16:25:06 +02:00
2013-06-30 23:41:37 +02:00
- replace: '!!!'
2013-10-27 19:25:29 +01:00
to: '!!!111!!!eleven!1!'
2013-05-28 16:25:06 +02:00
pre: '!'
match: false
percentage: 20
alcohol: 70
2013-06-30 23:41:37 +02:00
- replace: '!'
to: '!!'
pre: '!'
match: false
percentage: 90
2013-10-27 19:25:29 +01:00
- replace: drunk
to: dhrkunn
pre: are
2013-05-28 16:25:06 +02:00
match: false
percentage: 70
alcohol: 65
2013-10-27 19:25:29 +01:00
- replace: walk
to: whhealhk
pre: you can, you can still, you can not
2013-05-28 16:25:06 +02:00
match: false
percentage: 80
2013-06-30 23:41:37 +02:00
alcohol: 30
2013-05-28 16:25:06 +02:00
2013-06-30 23:41:37 +02:00
- replace: wtf
to: wft
percentage: 20
alcohol: 40
- replace: lol
to: loool
percentage: 80
alcohol: 10
- replace: afk
2013-10-27 19:25:29 +01:00
to: aafkayyy
percentage: 30
2013-06-30 23:41:37 +02:00
alcohol: 30
2013-10-27 19:25:29 +01:00
- replace: write
to: wreitt
pre: you can,you can still,you can not
2013-06-30 23:41:37 +02:00
match: false
percentage: 80
alcohol: 50
2013-10-27 19:25:29 +01:00
- replace: drink
to: booze
2013-06-30 23:41:37 +02:00
percentage: 80
alcohol: 70
- replace: '?'
to: '????'
pre: '?'
match: false
percentage: 80
alcohol: 40
2013-05-28 16:25:06 +02:00
- replace: -space
to: ''
pre: h,g,w
match: true
alcohol: 10
- replace: -space
to: ''
2013-07-01 01:07:56 +02:00
percentage: 30
2013-05-28 16:25:06 +02:00
alcohol: 35
- replace: -space
to: ''
percentage: 10
- replace: -start
2013-06-30 23:41:37 +02:00
to: dho
2013-05-28 16:25:06 +02:00
percentage: 15
alcohol: 50
- replace: -start
2013-06-30 23:41:37 +02:00
to: hhn
2013-05-28 16:25:06 +02:00
percentage: 10
alcohol: 50
- replace: -random
2013-10-27 19:25:29 +01:00
to: lu
2013-05-28 16:25:06 +02:00
percentage: 10
- replace: -random
2013-10-27 19:25:29 +01:00
to: lug
percentage: 10
alcohol: 50
2013-05-28 16:25:06 +02:00
- replace: -random
to: blub
2013-07-01 01:07:56 +02:00
percentage: 20
2013-10-27 19:25:29 +01:00
alcohol: 80
2013-05-28 16:25:06 +02:00
- replace: -random
to: lerg
percentage: 40
2013-10-27 19:25:29 +01:00
alcohol: 85
2013-05-28 16:25:06 +02:00
- replace: -random
2013-06-30 23:41:37 +02:00
to: gul
2013-10-27 19:25:29 +01:00
percentage: 40
2013-05-28 16:25:06 +02:00
alcohol: 80
2013-06-30 23:41:37 +02:00
- replace: -random
to: ' '
percentage: 100
alcohol: 70
- replace: -random
to: ' '
percentage: 60
alcohol: 40
- replace: -random
to: ' '
percentage: 50
alcohol: 30
2013-05-28 16:25:06 +02:00
- replace: -end
to: '!'
2013-06-30 23:41:37 +02:00
percentage: 40
2013-05-28 16:25:06 +02:00
alcohol: 30
2013-05-02 10:06:07 +02:00
2013-06-30 23:41:37 +02:00
- replace: -random
2013-10-27 19:25:29 +01:00
to: ' *hic* '
2013-06-30 23:41:37 +02:00
percentage: 80
alcohol: 70
- replace: -random
2013-10-27 19:25:29 +01:00
to: ' *hic* '
2013-07-01 01:07:56 +02:00
percentage: 15
2013-06-30 23:41:37 +02:00
alcohol: 40
- replace: -space
2013-10-27 19:25:29 +01:00
to: ' *hic* '
2013-07-01 01:07:56 +02:00
percentage: 5
2013-06-30 23:41:37 +02:00
alcohol: 20
2013-05-28 16:25:06 +02:00
- replace: -end
2013-10-27 19:25:29 +01:00
to: ' *hic*'
2013-05-28 16:25:06 +02:00
percentage: 70
2013-07-03 00:31:34 +02:00
alcohol: 50
- replace: -all
2013-10-27 19:25:29 +01:00
to: '*burp*'
2013-07-03 00:31:34 +02:00
percentage: 3
alcohol: 60
2013-10-27 19:25:29 +01:00
- replace: -all
to: '*burp*'
percentage: 6
alcohol: 80