mirror of
https://github.com/exituser/Brewery.git
synced 2026-09-17 06:38:56 +00:00
Added Custom Items and Cauldron-Recipes
This commit is contained in:
+276
-175
@@ -40,8 +40,8 @@ pukeDespawntime: 60
|
||||
|
||||
# Konsumierbares Item/Stärke. Senkt den Alkoholpegel um <Stärke> wenn konsumiert.
|
||||
drainItems:
|
||||
- Bread/4
|
||||
- Milk_Bucket/2
|
||||
- Bread/4
|
||||
- Milk_Bucket/2
|
||||
|
||||
# Zeit (in Tagen) die Trunkenheitsdaten nach offlinegehen eines Spielers im Speicher verbleiben, um z.B. Kater-Effekte anzuwenden. [7]
|
||||
hangoverDays: 7
|
||||
@@ -80,6 +80,111 @@ autosave: 3
|
||||
version: '1.8'
|
||||
|
||||
|
||||
# -- Eigene Items Definieren --
|
||||
# Die festgelegte id kann dann in einem Rezept verwendet werden
|
||||
|
||||
# matchAny: true wenn es schon reicht wenn eine der Angaben zutrifft
|
||||
# material: Welche Art das Item haben muss
|
||||
# name: Welchen Namen das Item haben muss (Farbcodes möglich: z.b. &6)
|
||||
# lore: Was in der Lore des Items stehen muss
|
||||
|
||||
customItems:
|
||||
bsp-item:
|
||||
# Ein Barriere Item das Mauer heißt und in der Lore die angegebene Zeile hat
|
||||
material: Barrier
|
||||
name: 'Mauer'
|
||||
lore:
|
||||
- '&7Besonders gut geschützt'
|
||||
|
||||
bsp-item2:
|
||||
# Mit matchAny muss nur eine der Angaben zutreffen.
|
||||
# Hier also eine der Türarten, oder ein Item namens Buchenholztür, oder ein Item mit 'Eine Tür' in der Lore
|
||||
matchAny: true
|
||||
material:
|
||||
- Acacia_Door
|
||||
- Oak_Door
|
||||
- Spruce_Door
|
||||
name:
|
||||
- 'Buchenholztür'
|
||||
lore:
|
||||
- 'Eine Tür'
|
||||
|
||||
himbeere:
|
||||
name: '&cHimbeere'
|
||||
|
||||
|
||||
# -- Zutaten im Kessel --
|
||||
# Hier kann angegeben werden welche Zutaten in den Kessel getan werden können und was mit ihnen geschieht.
|
||||
|
||||
# name: Name des Basistrankes der aus dem Kessel kommt (Farbcodes möglich: z.b. &6)
|
||||
# ingredients: Auflistung von 'Material/Anzahl'
|
||||
# Halte ein Item in der Hand und benutze /brew ItemName um dessen Material herauszufinden und für ein Rezept zu benutzen
|
||||
# (Item-ids anstatt Material können in Bukkit nicht mehr benutzt werden)
|
||||
# Eine Liste von allen Materialien kann hier gefunden werden: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
|
||||
# color: Farbe des Trankes der aus dem Kessel kommt
|
||||
# Benutzbare Farben: DARK_RED, RED, BRIGHT_RED, ORANGE, PINK, BLUE, CYAN, WATER, GREEN, BLACK, GREY, BRIGHT_GREY
|
||||
# Oder RGB Farben (Hex: also zB '99FF33') (Ohne #) (mit '') (Einfach nach "HTML color" im Internet suchen)
|
||||
# lore: Auflistung von zusätzlichem Text auf dem Trank. (Farbcodes möglich: z.b. &6)
|
||||
|
||||
|
||||
cauldron:
|
||||
bsp:
|
||||
name: Beispiel
|
||||
ingredients:
|
||||
- Bedrock/2
|
||||
- Diamond
|
||||
color: BLACK
|
||||
lore:
|
||||
- Ein Beispiel für einen Basistrank
|
||||
- So kommt er aus dem Kessel
|
||||
|
||||
# -- Eine Zutat: --
|
||||
wheat:
|
||||
name: Getreideferment
|
||||
ingredients: Wheat
|
||||
|
||||
sugarcane:
|
||||
name: Zuckersud
|
||||
ingredients: Sugar_Cane
|
||||
color: 'f1ffad' # gelbliches grün
|
||||
|
||||
apple:
|
||||
name: Apfelmost
|
||||
ingredients: Apple
|
||||
|
||||
potato:
|
||||
name: Kartoffelmaische
|
||||
ingredients: Potato
|
||||
|
||||
grass:
|
||||
name: Kräuterbrühe
|
||||
ingredients: Grass
|
||||
color: '99ff66' # helles grün
|
||||
|
||||
rmushroom:
|
||||
name: Pilzsud
|
||||
ingredients: Red_Mushroom
|
||||
color: 'ff5c33' # bernsteinrot
|
||||
|
||||
cocoa:
|
||||
name: Kakaobrühe
|
||||
ingredients: Cocoa_Beans
|
||||
color: '804600' # mokka
|
||||
|
||||
milk:
|
||||
name: Milchiges Wasser
|
||||
ingredients: Milk_Bucket
|
||||
color: BRIGHT_GREY
|
||||
|
||||
# -- Mehrere Zutaten: --
|
||||
apfelmet_basis:
|
||||
name: Apfel-Zuckersud
|
||||
ingredients:
|
||||
- Sugar_Cane/3
|
||||
- Apple
|
||||
color: 'e1ff4d' # grünliches gelb
|
||||
|
||||
|
||||
# -- Rezepte für Getränke --
|
||||
|
||||
# name: Verschiedene Namen für schlecht/mittel/gut (Farbcodes möglich: z.b. &6)
|
||||
@@ -108,185 +213,181 @@ version: '1.8'
|
||||
|
||||
recipes:
|
||||
# Ein vollständiges Beispiel zuerst:
|
||||
0:
|
||||
name: Schlechtes Beispiel/Beispiel/Gutes Beispiel
|
||||
ingredients:
|
||||
- Sugar_Cane/5
|
||||
- Diamond/1
|
||||
- Cocoa_Beans/20
|
||||
- Spruce_Planks/8
|
||||
- Bedrock/1
|
||||
cookingtime: 3
|
||||
distillruns: 2
|
||||
distilltime: 60
|
||||
wood: 4
|
||||
age: 11
|
||||
color: DARK_RED
|
||||
difficulty: 3
|
||||
alcohol: 23
|
||||
lore:
|
||||
- Dies ist ein Beispiel Trank
|
||||
- ++Ganz normales Beispiel
|
||||
- Dies würde auf dem Trank stehen
|
||||
- + Riecht eklig
|
||||
- ++ Riecht ganz ok
|
||||
- +++ Riecht richtig gut
|
||||
effects:
|
||||
- FIRE_RESISTANCE/20
|
||||
- HEAL/1
|
||||
- WEAKNESS/2-3/50-60
|
||||
- POISON/1-0/20-0
|
||||
1:
|
||||
name: Ranziges Weißbier/Weißbier/Feines Weißbier
|
||||
ingredients:
|
||||
- Wheat/3
|
||||
cookingtime: 8
|
||||
distillruns: 0
|
||||
wood: 1
|
||||
age: 2
|
||||
color: BRIGHT_GREY
|
||||
difficulty: 1
|
||||
alcohol: 5
|
||||
2:
|
||||
name: Ranziges Bier/Bier/Feines Bier
|
||||
ingredients:
|
||||
- Wheat/6
|
||||
cookingtime: 8
|
||||
distillruns: 0
|
||||
wood: 0
|
||||
age: 3
|
||||
color: ORANGE
|
||||
difficulty: 1
|
||||
lore:
|
||||
- +++ &8Das perlt
|
||||
alcohol: 6
|
||||
3:
|
||||
name: Ranziges Dunkelbier/Dunkelbier/Feines Dunkelbier
|
||||
ingredients:
|
||||
- Wheat/6
|
||||
cookingtime: 8
|
||||
distillruns: 0
|
||||
wood: 4
|
||||
age: 8
|
||||
color: BLACK
|
||||
difficulty: 2
|
||||
alcohol: 7
|
||||
4:
|
||||
name: Scheußlicher Met/Met/&6Goldener Met
|
||||
ingredients:
|
||||
- Sugar_Cane/6
|
||||
cookingtime: 3
|
||||
distillruns: 0
|
||||
wood: 2
|
||||
age: 4
|
||||
color: ORANGE
|
||||
difficulty: 2
|
||||
alcohol: 9
|
||||
lore:
|
||||
- +++ Hat einen goldenen Schein
|
||||
5:
|
||||
name: Apfelmet/Süßer Apfelmet/&6Goldensüßer Apfelmet
|
||||
ingredients:
|
||||
- Sugar_Cane/6
|
||||
- Apple/2
|
||||
cookingtime: 4
|
||||
distillruns: 0
|
||||
wood: 2
|
||||
age: 4
|
||||
color: ORANGE
|
||||
difficulty: 4
|
||||
alcohol: 12
|
||||
lore:
|
||||
- + Ist da wirklich Apfel drin?
|
||||
- ++ Schmeckt nach süßem Apfel
|
||||
- +++ Hat eine wunderbare Apfelnote
|
||||
effects:
|
||||
- WATER_BREATHING/1-2/150
|
||||
6:
|
||||
name: Bitterer Rum/Würziger Rum/&6Goldener Rum
|
||||
ingredients:
|
||||
- Sugar_Cane/14
|
||||
cookingtime: 5
|
||||
distillruns: 2
|
||||
distilltime: 30
|
||||
wood: 2
|
||||
age: 14
|
||||
color: DARK_RED
|
||||
difficulty: 6
|
||||
alcohol: 30
|
||||
effects:
|
||||
- FIRE_RESISTANCE/1/20-100
|
||||
- POISON/1-0/30-0
|
||||
7:
|
||||
name: Abgeranzter Vodka/Vodka/Russischer Vodka
|
||||
ingredients:
|
||||
- Potato/10
|
||||
cookingtime: 15
|
||||
distillruns: 3
|
||||
age: 0
|
||||
color: BRIGHT_GREY
|
||||
difficulty: 4
|
||||
alcohol: 20
|
||||
lore:
|
||||
- + &8Fast nicht trinkbar
|
||||
effects:
|
||||
- WEAKNESS/15
|
||||
- POISON/10
|
||||
8:
|
||||
name: minderwertiger Absinth/Absinth/Starker Absinth
|
||||
ingredients:
|
||||
- Grass/15
|
||||
cookingtime: 3
|
||||
distillruns: 6
|
||||
distilltime: 80
|
||||
color: GREEN
|
||||
difficulty: 8
|
||||
alcohol: 45
|
||||
effects:
|
||||
- POISON/20-30
|
||||
9:
|
||||
name: Kartoffelsuppe
|
||||
ingredients:
|
||||
- Potato/5
|
||||
- Grass/3
|
||||
cookingtime: 3
|
||||
color: PINK
|
||||
difficulty: 1
|
||||
effects:
|
||||
- HEAL/0-1
|
||||
10:
|
||||
name: Fader Kaffee/Kaffee/Starker Kaffee
|
||||
ingredients:
|
||||
- Cocoa_Beans/12
|
||||
- Milk_Bucket/2
|
||||
cookingtime: 2
|
||||
color: BLACK
|
||||
difficulty: 3
|
||||
lore: + &8Bestimmt schon eine Woche alt
|
||||
effects:
|
||||
- REGENERATION/1/2-5
|
||||
- SPEED/1/30-140
|
||||
bsp:
|
||||
name: Schlechtes Beispiel/Beispiel/Gutes Beispiel
|
||||
ingredients:
|
||||
- Diamond/1
|
||||
- Spruce_Planks/8
|
||||
- Bedrock/1
|
||||
# - Brewery:Weißbier/2
|
||||
# - ExoticGarden:Grape/3
|
||||
- bsp-item/1
|
||||
cookingtime: 3
|
||||
distillruns: 2
|
||||
distilltime: 60
|
||||
wood: 4
|
||||
age: 11
|
||||
color: DARK_RED
|
||||
difficulty: 3
|
||||
alcohol: 23
|
||||
lore:
|
||||
- Dies ist ein Beispiel Trank
|
||||
- ++Ganz normales Beispiel
|
||||
- Dies würde auf dem Trank stehen
|
||||
- + Riecht eklig
|
||||
- ++ Riecht ganz ok
|
||||
- +++ Riecht richtig gut
|
||||
effects:
|
||||
- FIRE_RESISTANCE/20
|
||||
- HEAL/1
|
||||
- WEAKNESS/2-3/50-60
|
||||
- POISON/1-0/20-0
|
||||
|
||||
weißbier:
|
||||
name: Ranziges Weißbier/Weißbier/Feines Weißbier
|
||||
ingredients:
|
||||
- Wheat/3
|
||||
cookingtime: 8
|
||||
distillruns: 0
|
||||
wood: 1
|
||||
age: 2
|
||||
color: BRIGHT_GREY
|
||||
difficulty: 1
|
||||
alcohol: 5
|
||||
|
||||
bier:
|
||||
name: Ranziges Bier/Bier/Feines Bier
|
||||
ingredients:
|
||||
- Wheat/6
|
||||
cookingtime: 8
|
||||
distillruns: 0
|
||||
wood: 0
|
||||
age: 3
|
||||
color: ORANGE
|
||||
difficulty: 1
|
||||
lore:
|
||||
- +++ &8Das perlt
|
||||
alcohol: 6
|
||||
|
||||
dunkelbier:
|
||||
name: Ranziges Dunkelbier/Dunkelbier/Feines Dunkelbier
|
||||
ingredients:
|
||||
- Wheat/6
|
||||
cookingtime: 8
|
||||
distillruns: 0
|
||||
wood: 4
|
||||
age: 8
|
||||
color: BLACK
|
||||
difficulty: 2
|
||||
alcohol: 7
|
||||
|
||||
met:
|
||||
name: Scheußlicher Met/Met/&6Goldener Met
|
||||
ingredients:
|
||||
- Sugar_Cane/6
|
||||
cookingtime: 3
|
||||
distillruns: 0
|
||||
wood: 2
|
||||
age: 4
|
||||
color: ORANGE
|
||||
difficulty: 2
|
||||
alcohol: 9
|
||||
lore:
|
||||
- +++ Hat einen goldenen Schein
|
||||
|
||||
apfelmet:
|
||||
name: Apfelmet/Süßer Apfelmet/&6Goldensüßer Apfelmet
|
||||
ingredients:
|
||||
- Sugar_Cane/6
|
||||
- Apple/2
|
||||
cookingtime: 4
|
||||
distillruns: 0
|
||||
wood: 2
|
||||
age: 4
|
||||
color: ORANGE
|
||||
difficulty: 4
|
||||
alcohol: 12
|
||||
lore:
|
||||
- + Ist da wirklich Apfel drin?
|
||||
- ++ Schmeckt nach süßem Apfel
|
||||
- +++ Hat eine wunderbare Apfelnote
|
||||
effects:
|
||||
- WATER_BREATHING/1-2/150
|
||||
|
||||
rum:
|
||||
name: Bitterer Rum/Würziger Rum/&6Goldener Rum
|
||||
ingredients:
|
||||
- Sugar_Cane/14
|
||||
cookingtime: 5
|
||||
distillruns: 2
|
||||
distilltime: 30
|
||||
wood: 2
|
||||
age: 14
|
||||
color: DARK_RED
|
||||
difficulty: 6
|
||||
alcohol: 30
|
||||
effects:
|
||||
- FIRE_RESISTANCE/1/20-100
|
||||
- POISON/1-0/30-0
|
||||
|
||||
vodka:
|
||||
name: Abgeranzter Vodka/Vodka/Russischer Vodka
|
||||
ingredients:
|
||||
- Potato/10
|
||||
cookingtime: 15
|
||||
distillruns: 3
|
||||
age: 0
|
||||
color: BRIGHT_GREY
|
||||
difficulty: 4
|
||||
alcohol: 20
|
||||
lore:
|
||||
- + &8Fast nicht trinkbar
|
||||
effects:
|
||||
- WEAKNESS/15
|
||||
- POISON/10
|
||||
|
||||
absinth:
|
||||
name: minderwertiger Absinth/Absinth/Starker Absinth
|
||||
ingredients:
|
||||
- Grass/15
|
||||
cookingtime: 3
|
||||
distillruns: 6
|
||||
distilltime: 80
|
||||
color: GREEN
|
||||
difficulty: 8
|
||||
alcohol: 45
|
||||
effects:
|
||||
- POISON/20-30
|
||||
|
||||
kartoffelsuppe:
|
||||
name: Kartoffelsuppe
|
||||
ingredients:
|
||||
- Potato/5
|
||||
- Grass/3
|
||||
cookingtime: 3
|
||||
color: PINK
|
||||
difficulty: 1
|
||||
effects:
|
||||
- HEAL/0-1
|
||||
|
||||
kaffee:
|
||||
name: Fader Kaffee/Kaffee/Starker Kaffee
|
||||
ingredients:
|
||||
- Cocoa_Beans/12
|
||||
- Milk_Bucket/2
|
||||
cookingtime: 2
|
||||
color: BLACK
|
||||
difficulty: 3
|
||||
lore: + &8Bestimmt schon eine Woche alt
|
||||
effects:
|
||||
- REGENERATION/1/2-5
|
||||
- SPEED/1/30-140
|
||||
|
||||
# Mehr Ideen für Rezepte: Cachaca, Gin, Whiskey, Tequila, Cidre, etc, sowie Rezeptvarianten wie Goldener Vodka etc.
|
||||
# Ich werde keine weiteren Rezepte zu dieser Standardconfig hinzufügen, da diese öffentlich und für Spieler zum Abschauen einsehbar wären
|
||||
# Der Serveradmin kann neue Rezepte hinzufügen und bestehende ändern, um das Abschauen aus der Standardconfig zu verhindern.
|
||||
|
||||
|
||||
# cooked: ALLE möglichen Zutaten und die nach dem Gähren daraus entstehenden Tranknamen:
|
||||
# [Beispiel] MATERIAL: Name nach Gähren
|
||||
|
||||
cooked:
|
||||
Wheat: Getreideferment
|
||||
Sugar_Cane: Zuckersud
|
||||
Apple: Apfelmost
|
||||
Potato: Kartoffelmaische
|
||||
Grass: Kräuterbrühe
|
||||
Red_Mushroom: Pilzsud
|
||||
Cocoa_Beans: Farbige Brühe
|
||||
Milk_Bucket: Milchiges Wasser
|
||||
|
||||
|
||||
|
||||
# -- Plugin Kompatiblität --
|
||||
|
||||
# Andere Plugins (wenn installiert) nach Rechten zum öffnen von Fässern checken [true]
|
||||
|
||||
Reference in New Issue
Block a user