-
Notifications
You must be signed in to change notification settings - Fork 4
Deities.yml
One of the main features of this plugin is being able to customize which deities are on your server, allowing for endless customization and some unique gameplay. Each deity in the deities.yml
file follows a structured format, allowing for comprehensive customization. Here's an overview of the sections and what they represent:
deities:
deity_identifier:
name: "Deity Name"
lore: "A brief description or lore about the deity."
domain: "The primary domain or aspect the deity represents."
alignment: "The moral or ethical alignment of the deity."
offerings: ["Item:Favor", ...]
rituals: ["ritual_identifier", ...]
blessings: ["EFFECT,Strength,Duration", ...]
curses: ["EFFECT,Strength,Duration", ...]
miracles: ["miracle_action", ...]
Detailed Breakdown
Deity Identifier
This is a unique key used to identify the deity. It should be a single word, usually lowercase.
Name
The formal name of the deity as it will appear to players.
Lore
A short description providing background information about the deity.
Domain
The primary area of influence or specialty of the deity (e.g., Nature, War, Knowledge).
Alignment
The deity's moral or ethical stance (e.g., Good, Evil, Neutral).
Offerings
Items that players can offer to gain favor.
Format: ITEM:FAVOR
where ITEM is the Item ID and FAVOR is the amount of favor gained.
See the page on Item IDs for information on using items from different plugins.
Rituals
A list of unique identifiers for rituals associated with the deity.
See the page on Rituals to set up your rituals.yml
file.
Blessings and Curses
Effects given to players based on their favor.
Format: EFFECT,Strength,Duration
where EFFECT is the Minecraft effect ID, Strength is the effect level, and Duration is in seconds.
Effects list here.
Miracles
Special actions or events triggered under specific conditions. See this page for more information.
deities:
baphomet:
name: "Baphomet"
lore: "A mysterious deity often associated with the occult and mystical rituals."
domain: "Occultism"
alignment: "Evil"
offerings:
- "GOLD_INGOT:5"
- "NETHER_STAR:50"
rituals:
- "purification_ritual"
blessings:
- "SPEED,2,300"
- "NIGHT_VISION,1,600"
curses:
- "BLINDNESS,1,60"
- "WEAKNESS,1,600"
miracles:
- "repair_all"
- "stop_burning"
- "run_command:give {player} DIAMOND 1"