Additions:
- Implemented three new beacons that can be crafted.
- All beacons have three tiers (Tier I, II, III).
- The berserker beacon will give you extra hearts for a specific time period, allowing you to overpower your enemy.
- The sacrificial beacon will lower both your and the enemies hearts - possibly one shotting them. High risk high reward beacon.
- The regeneration beacon will regenerate hearts.
- All beacons except sacrificial are only for the utiliser, the enemies or surrounding players will not receive the effects.
Code (YAML):
# Beacon System
beacons:
enabled
: true
# Enable beacon system
# Berserker Beacon - Gives temporary hearts to placer only
berserker:
enabled
: true
tiers:
tier1:
crafting:
ingredients
:
-
"BEACON:1"
# 1 Beacon
-
"REDSTONE_BLOCK:2"
# 2 Redstone Blocks
-
"IRON_BLOCK:2"
# 2 Iron Blocks
-
"DIAMOND:4"
# 4 Diamonds
hearts_given
: 5
# Extra hearts given to placer
duration
: 300
# Duration in seconds (5 minutes)
radius
: 0
# Only affects placer (no radius)
item:
material
:
"BEACON"
name
:
"&4⚔ Berserker Beacon I ⚔"
lore
:
-
"&7Right-click to place"
-
"&7Gives &c+{hearts} hearts&7 for &e{duration}s"
-
"&7Only affects the placer"
-
""
- "&6Tier
:
&eI"
tier2:
crafting:
ingredients
:
-
"BEACON:1"
# 1 Beacon
-
"REDSTONE_BLOCK:3"
# 3 Redstone Blocks
-
"GOLD_BLOCK:2"
# 2 Gold Blocks
-
"DIAMOND:3"
# 3 Diamonds
hearts_given
: 8
duration
: 450
# 7.5 minutes
radius
: 0
item:
material
:
"BEACON"
name
:
"&4⚔ Berserker Beacon II ⚔"
lore
:
-
"&7Right-click to place"
-
"&7Gives &c+{hearts} hearts&7 for &e{duration}s"
-
"&7Only affects the placer"
-
""
- "&6Tier
:
&eII"
tier3:
crafting:
ingredients
:
-
"BEACON:1"
# 1 Beacon
-
"REDSTONE_BLOCK:4"
# 4 Redstone Blocks
-
"NETHERITE_BLOCK:1"
# 1 Netherite Block
-
"DIAMOND:3"
# 3 Diamonds
hearts_given
: 12
duration
: 600
# 10 minutes
radius
: 0
item:
material
:
"BEACON"
name
:
"&4⚔ Berserker Beacon III ⚔"
lore
:
-
"&7Right-click to place"
-
"&7Gives &c+{hearts} hearts&7 for &e{duration}s"
-
"&7Only affects the placer"
-
""
- "&6Tier
:
&eIII"
# Regeneration Beacon - Regenerates current hearts to placer only
regeneration:
enabled
: true
tiers:
tier1:
crafting:
ingredients
:
-
"BEACON:1"
# 1 Beacon
-
"EMERALD_BLOCK:2"
# 2 Emerald Blocks
-
"IRON_BLOCK:2"
# 2 Iron Blocks
-
"GOLDEN_APPLE:4"
# 4 Golden Apples
hearts_regenerated
: 2
# Hearts regenerated per tick
duration
: 180
# 3 minutes
radius
: 0
# Only affects placer
regen_interval
: 30
# Regenerate every 30 seconds
item:
material
:
"BEACON"
name
:
"&a♥ Regeneration Beacon I ♥"
lore
:
-
"&7Right-click to place"
-
"&7Regenerates &c{hearts} hearts&7 every &e{interval}s"
- "&7Duration
:
&e{duration}s"
-
"&7Only affects the placer"
-
""
- "&6Tier
:
&eI"
tier2:
crafting:
ingredients
:
-
"BEACON:1"
# 1 Beacon
-
"EMERALD_BLOCK:3"
# 3 Emerald Blocks
-
"GOLD_BLOCK:2"
# 2 Gold Blocks
-
"GOLDEN_APPLE:3"
# 3 Golden Apples
hearts_regenerated
: 3
duration
: 300
# 5 minutes
radius
: 0
regen_interval
: 25
# Every 25 seconds
item:
material
:
"BEACON"
name
:
"&a♥ Regeneration Beacon II ♥"
lore
:
-
"&7Right-click to place"
-
"&7Regenerates &c{hearts} hearts&7 every &e{interval}s"
- "&7Duration
:
&e{duration}s"
-
"&7Only affects the placer"
-
""
- "&6Tier
:
&eII"
tier3:
crafting:
ingredients
:
-
"BEACON:1"
# 1 Beacon
-
"EMERALD_BLOCK:4"
# 4 Emerald Blocks
-
"NETHERITE_BLOCK:1"
# 1 Netherite Block
-
"ENCHANTED_GOLDEN_APPLE:2"
# 2 Enchanted Golden Apples
-
"GOLDEN_APPLE:1"
# 1 Golden Apple
hearts_regenerated
: 5
duration
: 450
# 7.5 minutes
radius
: 0
regen_interval
: 20
# Every 20 seconds
item:
material
:
"BEACON"
name
:
"&a♥ Regeneration Beacon III ♥"
lore
:
-
"&7Right-click to place"
-
"&7Regenerates &c{hearts} hearts&7 every &e{interval}s"
- "&7Duration
:
&e{duration}s"
-
"&7Only affects the placer"
-
""
- "&6Tier
:
&eIII"
# Sacrificial Beacon - Removes hearts from placer and nearby players, returns them when expired
sacrificial:
enabled
: true
tiers:
tier1:
crafting:
ingredients
:
-
"BEACON:1"
# 1 Beacon
-
"OBSIDIAN:4"
# 4 Obsidian
-
"WITHER_SKELETON_SKULL:1"
# 1 Wither Skeleton Skull
-
"SOUL_SAND:3"
# 3 Soul Sand
hearts_removed
: 3
# Hearts removed from affected players
duration
: 240
# 4 minutes
radius
: 10
# 10 block radius
item:
material
:
"BEACON"
name
:
"&5☠ Sacrificial Beacon I ☠"
lore
:
-
"&7Right-click to place"
-
"&7Removes &c{hearts} hearts&7 from all players"
-
"&7within &e{radius} blocks&7 for &e{duration}s"
-
"&7Hearts returned when beacon expires"
-
""
- "&6Tier
:
&eI"
tier2:
crafting:
ingredients
:
-
"BEACON:1"
# 1 Beacon
-
"OBSIDIAN:5"
# 5 Obsidian
-
"WITHER_SKELETON_SKULL:2"
# 2 Wither Skeleton Skulls
-
"SOUL_SAND:1"
# 1 Soul Sand
hearts_removed
: 5
duration
: 360
# 6 minutes
radius
: 15
# 15 block radius
item:
material
:
"BEACON"
name
:
"&5☠ Sacrificial Beacon II ☠"
lore
:
-
"&7Right-click to place"
-
"&7Removes &c{hearts} hearts&7 from all players"
-
"&7within &e{radius} blocks&7 for &e{duration}s"
-
"&7Hearts returned when beacon expires"
-
""
- "&6Tier
:
&eII"
tier3:
crafting:
ingredients
:
-
"BEACON:1"
# 1 Beacon
-
"OBSIDIAN:4"
# 4 Obsidian
-
"WITHER_SKELETON_SKULL:3"
# 3 Wither Skeleton Skulls
-
"NETHERITE_BLOCK:1"
# 1 Netherite Block
hearts_removed
: 7
duration
: 480
# 8 minutes
radius
: 20
# 20 block radius
item:
material
:
"BEACON"
name
:
"&5☠ Sacrificial Beacon III ☠"
lore
:
-
"&7Right-click to place"
-
"&7Removes &c{hearts} hearts&7 from all players"
-
"&7within &e{radius} blocks&7 for &e{duration}s"
-
"&7Hearts returned when beacon expires"
-
""
- "&6Tier
:
&eIII"