Magical Campfires
A Minecraft modification that gives campfires and soul campfires healing properties - players gradually restore health when near them.
🔥 Main Features
- Healing Effect: When approaching regular or soul campfires, the character slowly recovers health
- Flexible Configuration: Ability to adjust healing speed, effect radius, intervals between recovery and other parameters
- Visual Notifications: Optionally enable display of action bar messages when receiving healing
- Different Campfire Types: Separate settings for regular and soul campfires
- Burning Requirement: Optionally configure the effect to work only with lit campfires
⚙️ Settings
For Paper/Folia
settings:
enabled: true # Main toggle
campfire:
enabled: true # Healing from regular campfires
interval: 40 # Interval between healing (20 ticks = 1 second)
is_lit: true # Must be lit for healing
amount: 1 # Health amount per healing (1 = half heart)
range: 3 # Effect radius in blocks
actionbar:
enabled: true # Show action bar message
message: "<gold>You're getting healed by a campfire"
soul_campfire:
enabled: false # Healing from soul campfires
interval: 60
is_lit: true
amount: 1
range: 4
actionbar:
enabled: false
message: "<blue>You're getting healed by a soul campfire"
For Fabric
{
"enabled": true,
"campfire": {
"enabled": true,
"interval": 2000, // milliseconds, not ticks
"amount": 1.0,
"range": 3,
"actionbar": {
"enabled": true,
"message": "§2You're getting healed."
}
},
"soul_campfire": {
"enabled": true,
"interval": 2000, // 1 second = 1000ms
"amount": 1.0,
"range": 3,
"actionbar": {
"enabled": true,
"message": "§2You're getting healed."
}
}
}
📋 Commands
/campfire reload- Reloads plugin configuration (plugin only) Permission:magicalcampfire.reload
🔒 Permissions
magicalcampfire.reload- Allows reloading plugin configuration
🔄 How It Works
- The modification periodically checks for campfires near players
- If a campfire is found within radius (and lit if configured):
- Player receives health regeneration
- Action bar message is displayed if necessary
- Different settings can be configured for regular and soul campfires
Perfect for survival or RPG servers where you want to add realistic healing mechanics around campfires!