74 lines
2.0 KiB
YAML
74 lines
2.0 KiB
YAML
# =============================================================
|
|
# Elevator Config by M_Viper
|
|
# =============================================================
|
|
|
|
# Datenbank-Einstellungen (SQLite wird standardmäßig genutzt, falls false)
|
|
mysql:
|
|
enable: false
|
|
host: "localhost"
|
|
port: 3306
|
|
database: "minecraft"
|
|
user: "root"
|
|
password: ""
|
|
|
|
# Allgemeine Aufzug-Logik
|
|
settings:
|
|
max-distance: 64 # Maximale Reichweite zwischen zwei Modulen
|
|
hologram-duration: 45 # Wie lange das Hologramm (in Ticks) sichtbar bleibt
|
|
cooldown: 500 # Wartezeit zwischen Teleports (in Millisekunden)
|
|
|
|
# Optische Effekte & Hologramme
|
|
visuals:
|
|
enable-particles: true
|
|
particle-type: "FIREWORKS_SPARK"
|
|
|
|
# Texte & Farben (Nutze '&' für Farbcodes)
|
|
hologram-text: "&8&l» &b&lEtage %floor% &8&l«"
|
|
actionbar-text: "&fTransport: &b&lEtage %floor%"
|
|
|
|
# Darstellung des Hologramms
|
|
hologram-height-offset: 2.2
|
|
hologram-scale: 1.5
|
|
|
|
# Hintergrund-Box (RGBA Werte)
|
|
hologram-background-color:
|
|
alpha: 120
|
|
red: 0
|
|
green: 0
|
|
blue: 0
|
|
|
|
# Akustisches Feedback
|
|
sounds:
|
|
enable: true
|
|
type: "BLOCK_NOTE_BLOCK_CHIME"
|
|
volume: 1.0
|
|
pitch: 1.5
|
|
|
|
# Nachrichten-System
|
|
messages:
|
|
prefix: "&8[&bElevator&8] "
|
|
registered: "&aModul erfolgreich registriert!"
|
|
no-target: "&cKeine weitere Etage gefunden."
|
|
|
|
# =============================================================
|
|
# REZEPT-EINSTELLUNGEN
|
|
# =============================================================
|
|
# Crafting-Gitter Übersicht:
|
|
# [ 1 | 2 | 3 ] -> Zeile 1
|
|
# [ 4 | 5 | 6 ] -> Zeile 2
|
|
# [ 7 | 8 | 9 ] -> Zeile 3
|
|
# =============================================================
|
|
recipe:
|
|
# Das 3x3 Layout (Maximal 3 Zeichen pro Zeile!)
|
|
# Nutze einen Punkt (.) für ein leeres Feld.
|
|
shape:
|
|
- "ABA" # Slot 1 2 3
|
|
- "BCB" # Slot 4 5 6
|
|
- "ABA" # Slot 7 8 9
|
|
|
|
# Material-Zuweisung
|
|
# Liste aller Materialien: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
|
|
ingredients:
|
|
A: "IRON_INGOT"
|
|
B: "ENDER_PEARL"
|
|
C: "DAYLIGHT_DETECTOR" |