Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
2,114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 31.32 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: zh
  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: false
  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/10
  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. # Always show the 1-5 stars on the item depending on the quality. If false, they will only appear when brewing [true]
  55. alwaysShowQuality: true
  56.  
  57. # Always show the alcohol content on the item. If false, it will only show in the brewing stand [false]
  58. alwaysShowAlc: false
  59.  
  60. # 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]
  61. openLargeBarrelEverywhere: true
  62.  
  63. # How many Brewery drinks can be put into the Minecraft barrels [6]
  64. maxBrewsInMCBarrels: 6
  65.  
  66. # The used Ingredients and other brewing-data is saved to all Brewery Items. To prevent
  67. # hacked clients from reading what exactly was used to brew an item, the data can be encoded/scrambled.
  68. # This is a fast process to stop players from hacking out recipes, once they get hold of a brew.
  69. # Only drawback: brew items can only be used on another server with the same encodeKey.
  70. # 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]
  71. enableEncode: false
  72. encodeKey: -4883949485344554781
  73.  
  74. # Enable checking for Updates, Checks the curseforge api for updates to Brewery [true]
  75. # If an Update is found a Message is logged on Server-start and displayed to OPs joining the game
  76. updateCheck: true
  77.  
  78. # Autosave interval in minutes [3]
  79. autosave: 3
  80.  
  81. # Show debug messages in log [false]
  82. debug: false
  83.  
  84. # Config Version
  85. version: '2.0'
  86.  
  87.  
  88.  
  89. # -- Define custom items --
  90. # The defined id can then be used in recipes
  91.  
  92. #  matchAny: true if it is already enough if one of the info matches
  93. #  material: Which type the item has to be
  94. #  name: Which name the item has to be (Formatting codes possible: such as &6)
  95. #  lore: What has to be in the lore of the item
  96.  
  97. customItems:
  98.  # Three Example Items
  99.   ex-item:
  100.    # A Barrier item called Wall and has the given line in its lore
  101.     material: Barrier
  102.     name: 'Wall'
  103.     lore:
  104.      - '&7Very well protected'
  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.   rasp:
  118.     name: '&cRaspberry'
  119.   blue-flowers:
  120.     matchAny: true
  121.     material:
  122.      - cornflower
  123.       - blue_orchid
  124.  
  125.  
  126. # -- Ingredients in the Cauldron --
  127. # 鍋子裡的配料
  128. # Which Ingredients are accepted by the Cauldron and the base potion resulting from them
  129.  
  130.  # name: Name of the base potion coming out of the Cauldron (Formatting codes possible: such as &6)
  131.  # ingredients: List of 'material/amount'
  132.  #   With an item in your hand, use /brew ItemName to get its material for use in a recipe
  133.  #   (Item-ids instead of material are not supported by bukkit anymore and will not work)
  134.  #   A list of materials can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  135.  # color: Color of the potion from a cauldron. Defaults to CYAN
  136.  #   Usable Colors: DARK_RED, RED, BRIGHT_RED, ORANGE, YELLOW, PINK, PURPLE, BLUE, CYAN, WATER, TEAL, OLIVE, GREEN, LIME, BLACK, GREY, BRIGHT_GREY, WHITE
  137.  #   Or RGB colors (hex: for example '99FF33') (with '') (search for "HTML color" on the internet)
  138.  # lore: List of additional text on the base potion. (Formatting codes possible: such as &6)
  139.  
  140. cauldron:
  141.  # Example with all possible entries
  142.   ex:
  143.     name: Example
  144.     ingredients:
  145.      - Bedrock/2
  146.       - Diamond
  147.     color: BLACK
  148.     lore:
  149.      - An example for a Base Potion
  150.       - This is how it comes out of a Cauldron
  151.  
  152.   # -- One Ingredient: --
  153.   wheat: #
  154.     name: Fermented wheat
  155.     ingredients: Wheat
  156.  
  157.   sugarcane: #
  158.     name: Sugar brew
  159.     ingredients: Sugar_Cane
  160.     color: 'f1ffad' # yellowish green
  161.  
  162.   sugar: #
  163.     name: 酒精底
  164.     ingredients: Sugar
  165.  
  166.   apple: #
  167.     name: Apple must
  168.     ingredients: Apple
  169.  
  170.   berries:
  171.     name: Berry juice
  172.     ingredients: Sweet_Berries
  173.     color: RED
  174.  
  175.   potato:
  176.     name: Potatomash
  177.     ingredients: Potato
  178.  
  179.   grass:
  180.     name: Boiled herbs
  181.     ingredients: Grass
  182.     color: '99ff66' # bright green
  183.  
  184.   rmushroom:
  185.     name: Mushroom brew
  186.     ingredients: Red_Mushroom
  187.     color: 'ff5c33' # amber red
  188.  
  189.   bmushroom:
  190.     name: 煮蘑菇
  191.     ingredients: Brown_Mushroom
  192.     color: 'c68c53' # brighter brown
  193.  
  194.   cocoa:
  195.     name: Chocolately brew
  196.     ingredients: Cocoa_Beans
  197.     color: '804600' # mocca
  198.  
  199.   cafe:
  200.     name: Coffee Liquid
  201.     ingredients: brown_dye
  202.     color: '804600' # mocca
  203.  
  204.   milk:
  205.     name: Milky water
  206.     ingredients: Milk_Bucket
  207.     color: BRIGHT_GREY
  208.  
  209.   bl_flow:
  210.     name: Blueish brew
  211.     ingredients: blue-flowers
  212.     color: '0099ff' # sky blue
  213.  
  214.   cactus:
  215.     name: Agave brew
  216.     ingredients: cactus
  217.     color: '00b300' # cactus green
  218.  
  219.   poi_potato:
  220.     name: Poisonous Broth
  221.     ingredients: Poisonous_Potato
  222.  
  223.   egg:
  224.     name: Sticky brew
  225.     ingredients: Egg
  226.  
  227.  
  228.   oak_sapling:
  229.     name: Stringy hebry broth
  230.     ingredients: Oak_Sapling
  231.  
  232.   vine:
  233.     name: Boiled herbs
  234.     ingredients: vine
  235.     color: '99ff66' # bright green
  236.  
  237.   rot_flesh:
  238.     name: Foul pest
  239.     ingredients: Rotten_Flesh
  240.     color: '263300' # brown green
  241.  
  242.   melon:
  243.     name: 西瓜汁
  244.     ingredients: melon_slice
  245.  
  246.   wheat_seeds:
  247.     name: Bitter brew
  248.     ingredients: Wheat_Seeds
  249.  
  250.   melon_seeds:
  251.     name: Bitter brew
  252.     ingredients: Melon_Seeds
  253.  
  254.   pumpkin_seeds:
  255.     name: Bitter brew
  256.     ingredients: Pumpkin_Seeds
  257.  
  258.   bone_meal:
  259.     name: Bony Brew
  260.     ingredients: bone_meal
  261.     color: BRIGHT_GREY
  262.  
  263.   cookie:
  264.     name: Chocolately sap
  265.     ingredients: Cookie
  266.     color: '804600' # mocca
  267.  
  268.   fer_spid_eye:
  269.     name: Fermented Eye
  270.     ingredients: Fermented_Spider_Eye
  271.  
  272.   ghast_tear:
  273.     name: Sad brew
  274.     ingredients: ghast_tear
  275.  
  276.   snowball:
  277.     name: Icewater
  278.     ingredients: Snowball
  279.  
  280.   Gold_Nugget:
  281.     name: Glistering brew
  282.     ingredients: Gold_Nugget
  283.     color: 'ffd11a' # gold
  284.  
  285.   glowstone_dust:
  286.     name: Glowing brew
  287.     ingredients: Glowstone_Dust
  288.     color: 'ffff33' # bright yellow
  289.    
  290.   chorus_fruit:
  291.     name: 葡萄汁
  292.     ingredients: chorus_fruit
  293.     color: RED
  294.  
  295.   # -- Multiple Ingredients: --
  296.   applemead_base:
  297.     name: Apple-Sugar brew
  298.     ingredients:
  299.      - Sugar_Cane/3
  300.       - Apple
  301.     color: 'e1ff4d' # greenish yellow
  302.  
  303.   poi_grass:
  304.     name: Boiled acidy herbs
  305.     ingredients:
  306.      - Grass
  307.       - Poisonous_Potato
  308.     color: '99ff66' # bright green
  309.  
  310.   juniper:
  311.     name: Juniper brew
  312.     ingredients:
  313.      - blue-flowers
  314.       - wheat
  315.     color: '00ccff' # aqua
  316.  
  317.   gin_base:
  318.     name: Fruity juniper brew
  319.     ingredients:
  320.      - blue-flowers
  321.       - wheat
  322.       - apple
  323.     color: '66e0ff' # lighter aqua
  324.  
  325.   eggnog_base:
  326.     name: 滑順的雞蛋混合物
  327.     ingredients:
  328.      - egg
  329.       - sugar
  330.       - milk_bucket
  331.     color: 'ffecb3' # yellow-orange
  332.  
  333.   Blanco:
  334.     name: Blanco Base
  335.     ingredients:
  336.      - WHITE_TULIP
  337.       - CACTUS
  338.     color: '00ccff'
  339.  
  340.   Whiskey_base:
  341.     name: 麥芽糊
  342.     ingredients:
  343.      - Wheat_Seeds
  344.       - Wheat
  345.     color: '964B00'
  346.  
  347.  
  348.  
  349. # -- Recipes for Potions --
  350.  
  351. # name: Different names for bad/normal/good (Formatting codes possible: such as &6)
  352. # ingredients: List of 'material/amount'
  353. #   With an item in your hand, use /brew ItemName to get its material for use in a recipe
  354. #   (Item-ids instead of material are not supported by bukkit anymore and will not work)
  355. #   A list of materials can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  356. #   Plugin items with 'plugin:id' (Currently supporting ExoticGarden, Slimefun, MMOItems, Brewery)
  357. #   Or a custom item defined above
  358. # cookingtime: Time in real minutes ingredients have to boil
  359. # distillruns: How often it has to be distilled for full alcohol (0=without distilling)
  360. # distilltime: How long (in seconds) one distill-run takes (0=Default time of 40 sec) MC Default would be 20 sec
  361. # wood: Wood of the barrel 0=any 1=Birch 2=Oak 3=Jungle 4=Spruce 5=Acacia 6=Dark Oak
  362. #   The Minecraft barrel is made of oak
  363. # age: Time in Minecraft-days, the potion has to age in a barrel 0=no aging
  364. # color: Color of the potion after distilling/aging.
  365. #   Usable Colors: DARK_RED, RED, BRIGHT_RED, ORANGE, PINK, BLUE, CYAN, WATER, GREEN, BLACK, GREY, BRIGHT_GREY
  366. #   Or RGB colors (hex: for example '99FF33') (with '') (search for "HTML color" on the internet)
  367. # difficulty: 1-10 accuracy needed to get good quality (1 = unaccurate/easy, 10 = very precise/hard)
  368. # alcohol: Absolute amount of alcohol 0-100 in a perfect potion (will be added directly to the player, where 100 means fainting)
  369. # lore: List of additional text on the finished brew. (Formatting codes possible: such as &6)
  370. #   Specific lore for quality possible, using + bad, ++ normal, +++ good, added to the front of the line.
  371. # servercommands: List of Commands executed by the Server when drinking the brew
  372. # playercommands: List of Commands executed by the Player when drinking the brew
  373. # drinkmessage: Chat-message to the Player when drinking the Brew
  374. # drinktitle: Title on Screen to the Player when drinking the Brew
  375. # effects: List of effect/level/duration  Special potion-effect when drinking, duration in sek.
  376. #   Possible Effects: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/potion/PotionEffectType.html
  377. #   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
  378. #   Ranges also work high-low, ex. 'POISON/3-1/20-5' for weaker effects at good quality.
  379. #   Highest possible Duration: 1638 sec. Instant Effects dont need any duration specified.
  380.  
  381. recipes:
  382. #  Example Recipe with every possible entry first:
  383.   Wheatbeer:  
  384.     name: Skunky Wheatbeer/Wheatbeer/Fine Wheatbeer
  385.     ingredients:
  386.      - Wheat/3  #小麥 3-6
  387.     cookingtime: 8  #4-8分鐘
  388.     distillruns: 0
  389.     wood: 1  #樺木
  390.     age: 2  #樺木桶 2-4年
  391.     color: 'ffb84d' # Orange
  392.     difficulty: 1
  393.     alcohol: 5
  394.     lore: +++ &8Refreshing
  395.   Beer:
  396.     name: Skunky Beer/Beer/Fine Beer
  397.     ingredients:
  398.      - Wheat/6 #小麥 3-6
  399.     cookingtime: 8 #4-8分鐘
  400.     distillruns: 0
  401.     wood: 0  #任意
  402.     age: 3 #任意木桶 2-4年
  403.     color: 'ffd333' # Bright Orange
  404.     difficulty: 1
  405.     lore:
  406.      - +++ &8Crisp taste
  407.     alcohol: 6
  408.   Darkbeer:
  409.     name: Skunky Darkbeer/Darkbeer/Fine Darkbeer
  410.     ingredients:
  411.      - Wheat/6 #小麥 3-6
  412.     cookingtime: 8 #4-8分鐘
  413.     distillruns: 0
  414.     wood: 6  #黑橡木
  415.     age: 8 #黑橡木桶 6-10年
  416.     color: '650013' # Dark Red-Brown
  417.     difficulty: 2
  418.     lore:
  419.      - +++ &8Roasted taste
  420.     alcohol: 7
  421.   HotMilk:
  422.     name: hot milk
  423.     ingredients:
  424.    - Milk_Bucket/1 #牛奶桶 1
  425.     cookingtime: 1
  426.     color: 'F6F6F6'
  427.     difficulty: 1 #1-3分鐘
  428.     effects:
  429.    - REGENERATION/1/1
  430.     - LUCK/1/15
  431.   DistilledVodka:
  432.     name: Distilled Vodka/Russkaya Vodka/&6Russian Royal Vodka
  433.     ingredients:
  434.    - Potato/10  #馬鈴薯 8-13
  435.     - wheat/6  #小麥 4-8
  436.     cookingtime: 13  #11-16分鐘
  437.     distillruns: 8  #4-8次
  438.     wood: 1  #樺木
  439.     age: 2  #樺木桶 1-3年
  440.     color: BRIGHT_GREY
  441.     difficulty: 10
  442.     alcohol: 38
  443.     effects:
  444.    - DAMAGE_RESISTANCE/1-2/15
  445.     - POISON/25-10
  446.   BerryBrandy:
  447.     name: Berry juice with Alcohol/Red Brandy/&eVS Berry Brandy
  448.     ingredients:
  449.    - SWEET_BERRIES/32  #甜梅 24-36
  450.     cookingtime: 9  #7-12分鐘
  451.     distillruns: 4  #2-5次
  452.     wood: 2  #橡木
  453.     age: 4  #橡木桶 3-5年
  454.     color: 'F2E6D9'
  455.     difficulty: 10
  456.     alcohol: 40
  457.     effects:
  458.    - HUNGER/1-2/20-8
  459.     - POISON/20-3
  460.   EspressoCafe:
  461.     name: Coffee And Water/Americano/Espresso
  462.     ingredients:
  463.    - brown_dye/48  #棕色染料 45~53
  464.     cookingtime: 5  #4~7分鐘
  465.     distillruns: 1  #1次
  466.     color: BLACK
  467.     difficulty: 8
  468.     effects:
  469.    - REGENERATION/0-2/0-5
  470.     - SPEED/1/100
  471.     - FAST_DIGGING/1/0-3
  472.   Tequila:
  473.     name: Pulque/Mezcal/&6Tequila
  474.     ingredients:
  475.    - WHITE_TULIP/5  #白鬱金香 3~7
  476.     - CACTUS/16  #仙人掌 14~20
  477.     cookingtime: 18  #15~24分鐘
  478.     distillruns: 2  #1-2次
  479.     wood: 2  #橡木
  480.     age: 1 #橡木桶
  481.     color: 'F2E6D9'
  482.     difficulty: 6
  483.     alcohol: 45
  484.     effects:
  485.    - FIRE_RESISTANCE/1/10-50
  486.     - POISON/1-0/45-10
  487.   Borscht:
  488.     name: Can of Borscht
  489.     ingredients:
  490.    - BEETROOT/3 #甜菜根 1-5
  491.     - Potato/5 #馬鈴薯 3-7
  492.     - Grass/2 #草 1-4
  493.     - CARROT/3 #胡蘿蔔 1-7
  494.     - BEEF/2 #生牛肉 1-3
  495.     cookingtime: 6 #4~8分
  496.     color: RED
  497.     difficulty: 7
  498.     effects:
  499.    - REGENERATION/2/5-8
  500.     - FAST_DIGGING/1/2
  501.     - SATURATION/5
  502.   JapaneseWhiskey:
  503.     name: '&7A bottle Alcohol/blended malt Whisky/&6Japanese Whiskey'
  504.     ingredients:
  505.    - Wheat_Seeds/32 #種子 24-38
  506.     - WHEAT/16 #小麥 9-22
  507.     - BREAD/7 #麵包 4-8
  508.     cookingtime: 27 #22-34分鐘
  509.     distillruns: 3 #1-3次
  510.     wood: 2  #橡木
  511.     age: 11 #橡木桶貯存
  512.     color: '964B00'
  513.     difficulty: 10
  514.     alcohol: 40
  515.     effects:
  516.    - LUCK/1/1-5
  517.     - POISON/2-1/20-2
  518.     - FIRE_RESISTANCE/1/2-7
  519.   IndustrialAlcohol:
  520.     name: 100% 純甲醇工業酒精
  521.     ingredients:
  522.    - sugar/64 #糖 60-71
  523.     cookingtime: 7 #4-9分鐘
  524.     distillruns: 50 #22-55次
  525.     color: BRIGHT_GREY
  526.     difficulty: 8
  527.     alcohol: 100
  528.     effects:
  529.    - WITHER/5/40
  530.     - BLINDNESS/5/40
  531.   LondonDryGin:
  532.     name: a few Alcohol with water/No so sweet Gin/&eLondon Dry Gin
  533.     ingredients:
  534.    - Wheat_Seeds/27 #小麥種子 26-32
  535.     - Wheat/4 #小麥 2-5
  536.     - sugar/8 #糖 8-12
  537.     - SPRUCE_SAPLING/3 #杉木樹苗 2-7
  538.     - SWEET_BERRIES/6 #甜莓 4-8
  539.     cookingtime: 17  #16-24分鐘
  540.     distillruns: 4 #4-9次
  541.     color: BRIGHT_GREY
  542.     difficulty: 6
  543.     alcohol: 40
  544.     effects:
  545.    - FIRE_RESISTANCE/1/1-70
  546.     - HUNGER/2-0/28-4
  547.     - POISON/1-0/30-0
  548.   Jenever:
  549.     name: a few Alcohol with sugarwater/quite sweet Gin/&eJenever
  550.     ingredients:
  551.    - Wheat_Seeds/27 #小麥種子 26-32
  552.     - Wheat/8 #小麥 2-10
  553.     - sugar/15  #糖 10-20
  554.     - SPRUCE_SAPLING/3 #杉木樹苗 2-7
  555.     - SWEET_BERRIES/4 #甜莓 4-8
  556.     cookingtime: 22 #16-24分鐘
  557.     distillruns: 2 #1-5次
  558.     color: BRIGHT_GREY
  559.     difficulty: 6
  560.     alcohol: 40
  561.     effects:
  562.    - FIRE_RESISTANCE/1/1-20
  563.     - HUNGER/2-0/15-0
  564.     - POISON/1-0/30-0
  565.   BlendedScotchwhisky:
  566.     name: '&7Another bottle Alcohol/blended malt Whisky with coal flavor/&6Blended Scotch Whiskey'
  567.     ingredients:
  568.    - Wheat_Seeds/41 #小麥種子 35~48
  569.     - WHEAT/27 #小麥 23~36
  570.     - BREAD/4 #麵包 1~6
  571.     - COAL/5 #煤炭 2~8
  572.     cookingtime: 33 #27-38分鐘
  573.     distillruns: 2
  574.     wood: 2  #橡木
  575.     age: 4 #1-2次
  576.     color: '964B00'
  577.     difficulty: 10
  578.     alcohol: 40
  579.     effects:
  580.    - LUCK/1-2/1-3
  581.     - POISON/2-1/20-5
  582.     - FIRE_RESISTANCE/1/5-16
  583.     - SATURATION/2
  584.   SpruceTea:
  585.     name: 雲杉茶
  586.     ingredients:
  587.     - SPRUCE_LEAVES/3 #杉木樹葉 1~5
  588.     cookingtime: 4 #3-7分鐘
  589.     color: 'ffcc66'
  590.     difficulty: 2
  591.     effects:
  592.    - REGENERATION/1/2
  593.   FishSoup:
  594.     name: 馬鈴薯鱈魚湯
  595.     ingredients:
  596.    - Potato/3 #馬鈴薯 1~5
  597.     - Cod/2 #鱈魚 1~3
  598.     - CARROT/3 #胡蘿蔔 1~5
  599.     - Milk_Bucket/1 #牛奶 1~2
  600.     - SLIME_BALL/2 #史萊姆球 1~4
  601.     cookingtime: 7 #5-8分鐘
  602.     color: 'ffff66'
  603.     difficulty: 6
  604.     effects:
  605.    - SATURATION/5
  606.   PotatoSoup:
  607.       name: 馬鈴薯濃湯
  608.       ingredients:
  609.      - Potato/5 #馬鈴薯 1~6
  610.       - Grass/3 #草 1-5
  611.       cookingtime: 3 #1-5分鐘
  612.       color: PINK
  613.       difficulty: 1
  614.       effects:
  615.      - HEAL/0-1
  616.   BambooSoup:
  617.     name: 筍湯
  618.     ingredients:
  619.    - bamboo/6 #竹子4~7
  620.     - CARROT/2 #胡蘿蔔 1~3
  621.     - PORKCHOP/3 #生豬肉 2~4
  622.     cookingtime: 13 #10~15分鐘
  623.     color: 'ffffcc'
  624.     difficulty: 7
  625.     effects:
  626.    - SATURATION/5
  627.   MelonIce:
  628.     name: 西瓜冰沙
  629.     ingredients:
  630.    - melon_slice/12 #西瓜片 11-15
  631.     - sugar/7 #糖 4-8
  632.     cookingtime: 7 #5~8 分鐘
  633.     distillruns: 1 #1次
  634.     color: RED
  635.     difficulty: 4
  636.     effects:
  637.    - CONFUSION/1/15
  638.   SweetBerriesIce:
  639.     name: 甜莓冰沙
  640.     ingredients:
  641.    - SWEET_BERRIES/21 #甜莓 18-23
  642.     - sugar/2 #糖 1~4
  643.     cookingtime: 10 #6~10分鐘
  644.     distillruns: 1 #1次
  645.     color: RED
  646.     difficulty: 4
  647.     effects:
  648.    - CONFUSION/1/15
  649.   MushroomSauce:
  650.     name: 蘑菇醬
  651.     ingredients:
  652.    - brown_mushroom/17 # 棕色蘑菇 15-19
  653.     - sugar/6 #糖 3-8
  654.     - SLIME_BALL/3 #史萊姆球 1-5
  655.     - Milk_Bucket/2 #牛奶 1-4
  656.     cookingtime: 10 #8~12分鐘
  657.     color: RED
  658.     difficulty: 7
  659.     effects:
  660.    - SATURATION/4
  661.     - CONFUSION/1/7
  662.     - WEAKNESS/1/20
  663.   VSBrandy:
  664.     name: '&7A Bad wine/Brandy/&eVS Brandy'
  665.     ingredients:
  666.    - chorus_fruit/44  #甜莓 32~45
  667.     cookingtime: 14 #7~16分鐘
  668.     distillruns: 6 #2~6次
  669.     wood: 2  #橡木
  670.     age: 4 #橡木桶貯存
  671.     color: 'F2E6D9'
  672.     difficulty: 10
  673.     alcohol: 40
  674.     effects:
  675.    - HUNGER/1-2/20-8
  676.     - POISON/3-0/20-0
  677.     - SATURATION/0-2
  678.     - WEAKNESS/2-0/25-0
  679.   VSOPBrandy:
  680.     name: 'Brandy/&eVS Brandy/&eVSOP Brandy'
  681.     ingredients:
  682.    - chorus_fruit/49 #歌萊果 36~51
  683.     cookingtime: 17 #7~18分鐘
  684.     distillruns: 7 #2~8次
  685.     wood: 2  #橡木
  686.     age: 5 #橡木桶貯存
  687.     color: 'F2E6D9'
  688.     difficulty: 10
  689.     alcohol: 40
  690.     effects:
  691.    - HUNGER/1/20-8
  692.     - POISON/2-0/20-0
  693.     - SATURATION/0-2
  694.     - WEAKNESS/2-0/25-0
  695.   NapoleonBrandy:
  696.     name: '&eVS Brandy/&eVSOP Brandy/&eNapoleon Brandy'
  697.     ingredients:
  698.    - chorus_fruit/45 #7~18分鐘
  699.     cookingtime: 12 #7~18分鐘
  700.     distillruns: 5 #2~8次
  701.     wood: 2  #橡木
  702.     age: 7 #橡木桶貯存
  703.     color: 'F2E6D9'
  704.     difficulty: 10
  705.     alcohol: 40
  706.     effects:
  707.    - POISON/2-0/20-0
  708.     - SATURATION/0-2
  709.     - WEAKNESS/1-0/25-0
  710.   Ale:
  711.     name: Ale/Pale Ale/Bitter Pale Ale
  712.     ingredients:
  713.    - Wheat_Seeds/40 #小麥種子 32~43
  714.     - Wheat/9 #小麥 7~13
  715.     - Vine/4 #藤蔓 1~6
  716.     cookingtime: 6
  717.     distillruns: 0
  718.     wood: 0  #任意
  719.     age: 3 #任意木桶貯存
  720.     color: ORANGE
  721.     difficulty: 10
  722.     alcohol: 6
  723.     lore:
  724.      - '+Bubbled'
  725.       - '++ Fresh'
  726.       - '+++ Fruity'
  727.       - '+++ Fresh'
  728.   RedWine:
  729.     name: Red Wine
  730.     ingredients:
  731.      - chorus_fruit/15  #歌萊果 12~18
  732.     cookingtime: 7 #4~9分鐘
  733.     distillruns: 0
  734.     wood: 0  #任意
  735.     age: 20 # #任意木桶貯存
  736.     color: RED
  737.     difficulty: 4
  738.     alcohol: 8
  739.     lore:
  740.      - '+ &8Harsh'
  741.       - '+ &8Corked'
  742.       - '++ &8Mellow'
  743.       - '+++ &8Full-Bodied'
  744.   Mead:
  745.     name: Awkward Mead/Mead/&6Golden Mead
  746.     ingredients:
  747.    - Sugar_Cane/6 #糖 4-8
  748.     cookingtime: 3 #1~4分鐘
  749.     distillruns: 0
  750.     wood: 2  #橡木
  751.     age: 4 #橡木桶貯存
  752.     color: ORANGE
  753.     difficulty: 2
  754.     alcohol: 9
  755.   AppleMead:
  756.     name: Apple Mead/Sweet Apple Mead/&6Sweet Golden Apple Mead
  757.     ingredients:
  758.      - Sugar_Cane/6 #甘蔗 4-8
  759.       - Apple/2 #蘋果 1-5
  760.     cookingtime: 4 #3~5分鐘
  761.     distillruns: 0
  762.     wood: 2  #橡木
  763.     age: 4 #橡木桶貯存 4-6年
  764.     color: ORANGE
  765.     difficulty: 4
  766.     alcohol: 11
  767.     lore:
  768.      - +Is there any Apple in this?
  769.       - ++Refreshing taste of Apple
  770.       - +++Sweetest hint of Apple
  771.     effects:
  772.      - WATER_BREATHING/1-2/150
  773.   Cidre:
  774.     name: Poor Cidre/Apple Cider/Great Apple Cider
  775.     ingredients:
  776.      - Apple/14 #蘋果 12-17
  777.     cookingtime: 5 #3~5分鐘
  778.     distillruns: 0
  779.     wood: 0  #任意
  780.     age: 3 #任意木桶貯存
  781.     color: 'f86820' # Red-Orange
  782.     difficulty: 4
  783.     alcohol: 7
  784.   Calvados:
  785.     name: Sour Apple Liquor/Apple Liquor/Calvados
  786.     ingredients:
  787.      - Apple/8 #蘋果 5~11
  788.     cookingtime: 14 #10~18分鐘
  789.     distillruns: 4
  790.     wood: 5  #相思木
  791.     age: 6 #相思木桶貯存
  792.     color: BRIGHT_RED
  793.     difficulty: 5
  794.     alcohol: 14
  795.     lore:
  796.      - +Sour like Acid
  797.       - +++ Good Apple Liquor
  798.   Whiskey:
  799.     name: Unsightly Whiskey/Whiskey/Scotch Whiskey
  800.     ingredients:
  801.      - Wheat/14 #小麥 8-17
  802.       - Wheat_Seeds/6 #小麥種子 3-8
  803.     cookingtime: 24 #19~27分鐘
  804.     distillruns: 2 #1-2次
  805.     distilltime: 50
  806.     wood: 4  #杉木
  807.     age: 18 #杉木桶貯存
  808.     color: ORANGE
  809.     difficulty: 7
  810.     alcohol: 26
  811.     lore: '&7Single Malt'
  812.   Rum:
  813.     name: Bitter Rum/Spicy Rum/&6Golden Rum
  814.     ingredients:
  815.      - Sugar_Cane/18 #甘蔗 14-20
  816.     cookingtime: 6 #3~10分鐘
  817.     distillruns: 2 #1-2
  818.     distilltime: 30
  819.     wood: 2  #橡木
  820.     age: 14 #橡木桶貯存
  821.     color: DARK_RED
  822.     difficulty: 6
  823.     alcohol: 30
  824.     effects:
  825.      - FIRE_RESISTANCE/1/20-100
  826.       - POISON/1-0/30-0
  827.     lore:
  828.      - +&8Too bitter to drink
  829.       - ++&8Spiced by the barrel
  830.       - +++&eSpiced Gold
  831.   Vodka:
  832.     name: Lousy Vodka/Vodka/Russian Vodka
  833.     ingredients:
  834.      - Potato/10 #馬鈴薯 9-14
  835.     cookingtime: 15 #13-16分鐘
  836.     distillruns: 3 #3-8次
  837.     age: 0
  838.     color: BRIGHT_GREY
  839.     difficulty: 4
  840.     alcohol: 20
  841.     effects:
  842.      - WEAKNESS/15
  843.       - POISON/10
  844.   MushroomVodka:
  845.     name: Mushroom Vodka/Mushroom Vodka/Glowing Mushroom Vodka
  846.     ingredients:
  847.      - Potato/14 #馬鈴薯 10-17
  848.       - Red_Mushroom/2 #紅蘑菇 1-4
  849.       - Brown_Mushroom/2 #棕蘑菇 1-4
  850.     cookingtime: 19 #15-22分鐘
  851.     distillruns: 4 #1-4次
  852.     age: 0
  853.     color: 'ff9999' # Pink-Red
  854.     difficulty: 7
  855.     alcohol: 18
  856.     lore: +++&aGlows in the dark
  857.     effects:
  858.      - WEAKNESS/80
  859.       - CONFUSION/27
  860.       - NIGHT_VISION/50-80
  861.       - BLINDNESS/12-2
  862.       - SLOW/10-3
  863.   Gin:
  864.     name: Pale Gin/Gin/Old Tom Gin
  865.     ingredients:
  866.      - Wheat/9 #小麥 6-11
  867.       - BLUE_ORCHID/6  # Custom-Item: Blue Orchids or Cornflowers #藍色蝴蝶蘭 3-9
  868.       - Apple/1 #蘋果 1-3
  869.       - Sugar/13 #糖 8-16
  870.     cookingtime: 11 #9-13分鐘
  871.     distillruns: 2 #1-2次
  872.     color: '99ddff' # Very light blue
  873.     difficulty: 6
  874.     alcohol: 20
  875.     lore:
  876.      - ++ With the
  877.       - ++ taste of juniper
  878.       - +++ Perfectly finished off
  879.       - +++ with juniper
  880.   Absinthe:
  881.     name: Poor Absinthe/Absinthe/Strong Absinthe
  882.     ingredients:
  883.      - Grass/15 #9-18草
  884.     cookingtime: 3 #1-6分鐘
  885.     distillruns: 6 #3-8次
  886.     distilltime: 80
  887.     color: GREEN
  888.     difficulty: 8
  889.     alcohol: 45
  890.     effects:
  891.      - POISON/20-30
  892.   GreenAbsinthe:
  893.     name: Poor Absinthe/Green Absinthe/Bright Green Absinthe
  894.     ingredients:
  895.      - Grass/17 #草 13~20
  896.       - Poisonous_Potato/2 #毒馬鈴薯 1-4
  897.     cookingtime: 5 #3-8分鐘
  898.     distillruns: 6 #1~6次
  899.     distilltime: 85
  900.     color: LIME
  901.     difficulty: 9
  902.     alcohol: 46
  903.     effects:
  904.      - POISON/25-40
  905.       - HARM/2
  906.       - NIGHT_VISION/40-60
  907.     lore: '&aLooks poisonous'
  908.   Coffee:
  909.     name: Stale Coffee/Coffee/Strong Coffee
  910.     ingredients:
  911.    - Cocoa_Beans/12 # 棕色染料 10-15
  912.     - Milk_Bucket/2 #牛奶 1-4
  913.     cookingtime: 2 #1-5分鐘
  914.     color: BLACK
  915.     difficulty: 3
  916.     effects:
  917.    - REGENERATION/1/2-5
  918.     - SPEED/1/30-140
  919.   heiu:
  920.     name: 魚露
  921.     ingredients:
  922.    - salmon/12 #鮭魚 10-15
  923.     - sand/30 #沙子 20-30
  924.     cookingtime: 20 #20-30分鐘
  925.     distillruns: 0
  926.     distilltime: 0
  927.     wood: 0  #任意
  928.     age: 7 #任意木桶貯存
  929.     color: 'FFFF00'
  930.     difficutly: 10
  931.     alcohol: 0
  932.     effects:
  933.    - FIRE_RESISTANCE/2/20
  934.     - DAMAGE_RESISTANCE/1/15
  935.     - SPEED/2/20
  936.   Eggnog:
  937.     name: Egg Liquor/Eggnog/Advocaat
  938.     ingredients:
  939.      - Egg/5 #蛋 2-7
  940.       - Sugar/2 #糖 1-4
  941.       - Milk_Bucket/1 #牛奶 1-2
  942.     cookingtime: 2 #1-3分鐘
  943.     color: 'ffe680'
  944.     difficulty: 4
  945.     alcohol: 10
  946.     wood: 0  #任意
  947.     age: 3 #任意木桶貯存
  948.     lore: Made with raw egg
  949.  
  950. # More Recipes ideas: Cachaca, Gin, Whiskey, Tequila, Cider, etc. as well as high quality abbreviations like golden vodka etc.
  951. # I will not add more Recipes to the default config, as they would be public and viewable by users to cheat.
  952. # It is up to the Serveradmin to change and add Recipes, so players cannot cheat from the default config.
  953.  
  954.  
  955.  
  956.  
  957.  
  958.  
  959. # -- Plugin Compatibility --
  960.  
  961. # Enable checking of other Plugins (if installed) for Barrel Permissions [true]
  962. useWorldGuard: true
  963. useLWC: true
  964. useGriefPrevention: true
  965. useGMInventories: true
  966.  
  967. # Enable the Logging of Barrel Inventories to LogBlock [true]
  968. useLogBlock: true
  969.  
  970.  
  971. # -- Chat Distortion Settings --
  972.  
  973. # If written Chat is distorted when the Player is Drunk,
  974. # so that it looks like drunk writing
  975. # How much the chat is distorted depends on how drunk the Player is
  976. # Below are settings for what and how changes in chat occur
  977. enableChatDistortion: true
  978.  
  979. # Log to the Serverlog what the player actually wrote, before his words were altered [false]
  980. logRealChat: false
  981.  
  982. # Text after specified commands will be distorted when drunk (list) [- /gl]
  983. distortCommands:
  984. - /gl
  985. - /global
  986. - /fl
  987. - /s
  988. - /letter
  989. - /g
  990. - /l
  991. - /lokal
  992. - /local
  993. - /mail send
  994. - /m
  995. - /msg
  996. - /w
  997. - /whisper
  998. - /reply
  999. - /r
  1000. - /t
  1001. - /tell
  1002.  
  1003. # Distort the Text written on a Sign while drunk [false]
  1004. distortSignText: false
  1005.  
  1006. # Enclose a Chat text with these Letters to bypass Chat Distortion (Use "," as Separator) (list) [- '[,]']
  1007. # Chat Example: Hello i am drunk *I am testing Brewery*
  1008. distortBypass:
  1009. - '*,*'
  1010. - '[,]'
  1011.  
  1012. # words: Words and letters that will be altered when chatting while being drunk.
  1013. # Will be processed from first to last and a written sentece is altered in that order.
  1014.  
  1015. # 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.)
  1016. # to: What to replace it with.
  1017. # pre: Words and Letters before the wanted word (split with ",")
  1018. # 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
  1019. # alcohol: 1-100 minimum drunkeness after which this word ist replaced
  1020. # percentage: Probability of replacing a Word in percent
  1021.  
  1022. words:
  1023. -  replace: s
  1024.    to: sh
  1025.    percentage: 90
  1026.    alcohol: 30
  1027.  
  1028. -  replace: ch
  1029.    to: sh
  1030.    pre: u,s,o,a
  1031.    match: false
  1032.    alcohol: 10
  1033.    percentage: 70
  1034.  
  1035. -  replace: h
  1036.    to: hh
  1037.    pre: sch,h,t
  1038.    match: false
  1039.    percentage: 60
  1040.    alcohol: 20
  1041.  
  1042. -  replace: th
  1043.    to: thl
  1044.    percentage: 40
  1045.    alcohol: 30
  1046.  
  1047. -  replace: sch
  1048.    to: shk
  1049.    percentage: 60
  1050.    alcohol: 40
  1051.  
  1052. -  replace: u
  1053.    to: uuh
  1054.    percentage: 20
  1055.  
  1056. -  replace: y
  1057.    to: yy
  1058.    percentage: 60
  1059.    alcohol: 15
  1060.  
  1061. -  replace: e
  1062.    to: ee
  1063.    percentage: 40
  1064.    alcohol: 15
  1065.  
  1066. -  replace: you
  1067.    to: u
  1068.    percentage: 40
  1069.  
  1070. -  replace: u
  1071.    to: uo
  1072.    pre: u
  1073.    match: false
  1074.    percentage: 60
  1075.  
  1076. -  replace: that
  1077.    to: taht
  1078.    percentage: 20
  1079.    alcohol: 40
  1080.  
  1081. -  replace: p
  1082.    to: b
  1083.    percentage: 30
  1084.  
  1085. -  replace: p
  1086.    to: b
  1087.    percentage: 70
  1088.    alcohol: 60
  1089.  
  1090. -  replace: up
  1091.    to: ubb
  1092.    percentage: 80
  1093.    alcohol: 25
  1094.  
  1095. -  replace: o
  1096.    to: oh
  1097.    percentage: 20
  1098.  
  1099. -  replace: ei
  1100.    to: i
  1101.    percentage: 30
  1102.    alcohol: 15
  1103.  
  1104. -  replace: b
  1105.    to: bb
  1106.    percentage: 80
  1107.    alcohol: 40
  1108.  
  1109. -  replace: '!!!'
  1110.    to: '!!!111!!!eleven!1!'
  1111.    pre: '!'
  1112.    match: false
  1113.    percentage: 20
  1114.    alcohol: 70
  1115.  
  1116. -  replace: '!'
  1117.    to: '!!'
  1118.    pre: '!'
  1119.    match: false
  1120.    percentage: 90
  1121.  
  1122. -  replace: drunk
  1123.    to: dhrkunn
  1124.    pre: are
  1125.    match: false
  1126.    percentage: 70
  1127.    alcohol: 65
  1128.  
  1129. -  replace: walk
  1130.    to: whhealhk
  1131.    pre: you can, you can still, you can not
  1132.    match: false
  1133.    percentage: 80
  1134.    alcohol: 30
  1135.  
  1136. -  replace: wtf
  1137.    to: wft
  1138.    percentage: 20
  1139.    alcohol: 40
  1140.  
  1141. -  replace: lol
  1142.    to: loool
  1143.    percentage: 80
  1144.    alcohol: 10
  1145.  
  1146. -  replace: afk
  1147.    to: aafkayyy
  1148.    percentage: 30
  1149.    alcohol: 30
  1150.  
  1151. -  replace: write
  1152.    to: wreitt
  1153.    pre: you can,you can still,you can not
  1154.    match: false
  1155.    percentage: 80
  1156.    alcohol: 50
  1157.  
  1158. -  replace: drink
  1159.    to: booze
  1160.    percentage: 80
  1161.    alcohol: 70
  1162.  
  1163. -  replace: '?'
  1164.    to: '????'
  1165.    pre: '?'
  1166.    match: false
  1167.    percentage: 80
  1168.    alcohol: 40
  1169.  
  1170. -  replace: -space
  1171.    to: ''
  1172.    pre: h,g,w
  1173.    match: true
  1174.    alcohol: 10
  1175.  
  1176. -  replace: -space
  1177.    to: ''
  1178.    percentage: 30
  1179.    alcohol: 35
  1180.  
  1181. -  replace: -space
  1182.    to: ''
  1183.    percentage: 10
  1184.  
  1185. -  replace: -start
  1186.    to: 臉上
  1187.    percentage: 15
  1188.    alcohol: 50
  1189.  
  1190. -  replace: -start
  1191.    to: 射在
  1192.    percentage: 10
  1193.    alcohol: 50
  1194.  
  1195. -  replace: -random
  1196.    to: 幹我
  1197.    percentage: 10
  1198.  
  1199. -  replace: -random
  1200.    to:
  1201.    percentage: 10
  1202.    alcohol: 50
  1203.  
  1204. -  replace: -random
  1205.    to:
  1206.    percentage: 20
  1207.    alcohol: 80
  1208.  
  1209. -  replace: -random
  1210.    to:
  1211.    percentage: 40
  1212.    alcohol: 85
  1213.  
  1214. -  replace: -random
  1215.    to:
  1216.    percentage: 40
  1217.    alcohol: 80
  1218.  
  1219. -  replace: -random
  1220.    to: ' '
  1221.    percentage: 100
  1222.    alcohol: 70
  1223.  
  1224. -  replace: -random
  1225.    to: ' '
  1226.    percentage: 60
  1227.    alcohol: 40
  1228.  
  1229. -  replace: -random
  1230.    to: ' '
  1231.    percentage: 50
  1232.    alcohol: 30
  1233.  
  1234. -  replace: -end
  1235.    to: '!'
  1236.    percentage: 40
  1237.    alcohol: 30
  1238.  
  1239. -  replace: -random
  1240.    to: ' *hic* '
  1241.    percentage: 80
  1242.    alcohol: 70
  1243.  
  1244. -  replace: -random
  1245.    to: ' 破麻 '
  1246.    percentage: 15
  1247.    alcohol: 40
  1248.  
  1249. -  replace: -space
  1250.    to: ' 上我 '
  1251.    percentage: 5
  1252.    alcohol: 20
  1253.  
  1254. -  replace: -end
  1255.    to: ' 星爆'
  1256.    percentage: 70
  1257.    alcohol: 50
  1258.  
  1259. -  replace: -all
  1260.    to: '國瑜'
  1261.    percentage: 3
  1262.    alcohol: 60
  1263.  
  1264. -  replace: -all
  1265.    to: '當選'
  1266.    percentage: 6
  1267.    alcohol: 80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement