The
MysteryZones plugin adds a new layer of excitement and unpredictability to any Minecraft survival server by generating mysterious zones with various effects. Players can explore the world and stumble upon
randomly generated zones that offer both rewards and challenges. Depending on the type of zone, they might receive items, special effects, or encounter dangers. Each zone is marked with visible particles, ensuring players can spot them from a distance.
✅ Ready-to-Use Zones
MysteryZones comes with
151 pre-configured zones, each offering unique interactions. These zones are randomly generated around players, ensuring every gameplay session is filled with surprises. From healing zones to dangerous traps, the diversity in zones keeps players on their toes.
✅ 17 Different Zone Types
The plugin features
17 distinct types of zones, each providing different mechanics to engage players. These types include:
-
Potion Effect Zones: Players entering these zones will be affected by a specific potion effect (e.g., poison, speed, or regeneration).
-
Item Drop Zones: These zones drop valuable items like diamonds, emeralds, or fish, rewarding players who find them.
-
Heal Zones: Step into these zones to receive a set amount of healing, restoring the player’s health instantly.
-
Damage Zones: A risky zone where players take damage upon entering. Perfect for dangerous traps.
-
Item Removal Zones: These zones remove random items from a player’s inventory, making them a potential loss for unprepared players.
-
Item Give Zones: A reward-based zone where players receive a set amount of specific items.
-
Currency Add Zones: Players entering these zones are rewarded with in-game currency.
-
Mob Spawn Zones: Dangerous zones where hostile mobs like zombies, skeletons, or blazes spawn, ready to attack players.
-
Instant Kill Zones: The most dangerous zone type, where entering means immediate death for the player.
-
Burn Zones: These zones set the player on fire for a set duration, making survival a challenge.
-
Teleport Zones: These zones instantly teleport the player to a random location within a specified radius, adding an element of unpredictability and excitement to the gameplay.
-
Slippery Zone: Increases the player's movement speed drastically, making it hard to control.
- Experience Zones: Players entering these zones will be rewarded with a specific amount of experience points (XP), helping them level up or enhance their progress.
- Lightning Strike Zones: These zones summon a lightning strike upon entry, inflicting damage and providing a dramatic environmental effect.
- Launch Zones: Stepping into these zones propels players high into the air with a strong upward force, creating thrilling moments or helping them reach higher locations.
- Explosion Zones: Players entering these zones trigger an explosion that may cause damage, ignite fire, or even break blocks, depending on the zone's settings.
- Command Zones: Entering these zones executes a server command, which can perform actions like granting rewards, teleporting players, or any custom script defined by the administrator.
✅ Technical Features
-
The plugin is compatible with
Minecraft version 1.21.x
-
The zones can be customized via the plugin’s config file, allowing server administrators to tweak zone durations, diameters, effects, and more.
-
Particles visually mark each zone, ensuring players can see and interact with the zones easily.
✅ How to Use
Once the plugin is installed, zones will automatically begin generating around players as they explore the map. These zones remain active for a set duration and shrink over time. Admins can adjust the frequency of zone generation and the behavior of specific zones via the configuration file. The plugin works out-of-the-box, so no additional setup is needed beyond installation.
MysteryZones is the perfect addition for servers looking to add dynamic and random events to their worlds, offering players rewards, challenges, and surprises as they explore.
Code (YAML):
#Configuration version
#DO NOT CHANGE IT MANUALLY!
CfgVersion
: 1.1
#Generating new zones
Generating
: true
#Send message about new zone
Send_new_zone_message
: true
#Message
New_zone_message
:
"&aNew zone created in world &6%WORLD% &aat: &6%LOCATION%"
#Zone generation frequency (in seconds)
Frequency
: 30
# The distance that the new zone must keep from existing zones to avoid collisions
MIN_DISTANCE_BETWEEN_ZONES
: 20.0
# The distance that the new zone must keep from the player
# (if ALLOW_ZONE_WHERE_PLAYERS_ARE = false, the zone will not be created on the player)
MIN_DISTANCE_FROM_PLAYERS
: 10.0
# Do we allow zones to overlap?
ALLOW_ZONE_COLLISION
: false
# Do we allow the new zone to generate where a player is currently located?
ALLOW_ZONE_WHERE_PLAYERS_ARE
: false
# Parameter specifying the horizontal step – how sparsely/densely points on the perimeter should be drawn.
# A higher value = fewer points = fewer particles (lighter for the server).
# Example values:
# - 0.5 -> very dense (higher load)
# - 1.0 -> moderate (default)
# - 2.0 -> less dense
# - 3.0 -> even less dense
# - 5.0 -> very sparse (lightest for the server)
HORIZONTAL_PARTICLE_STEP
: 1.0
# Parameter specifying the vertical step – how many blocks up/down between particle drawings.
# A higher value = fewer layers of particles.
# Example values:
# - 1 -> very dense (higher load)
# - 2 -> medium
# - 3 -> default
# - 5 -> sparse
# - 10 -> very sparse (lightest for the server)
VERTICAL_PARTICLE_STEP
: 3
Code (YAML):
#Configuration version
#DO NOT CHANGE IT MANUALLY!
CfgVersion
: 1.0
zones:
zone1:
name
:
"Speed Boost Zone"
type
: POTION_EFFECT
status
: true
effect
:
"speed"
effect_duration
: 600
particles
:
"VILLAGER_HAPPY"
duration
: 60
diameter
: 50
zone2:
name
:
"Poison Trap Zone"
type
: POTION_EFFECT
status
: true
effect
:
"poison"
effect_duration
: 400
particles
:
"SMOKE_LARGE"
duration
: 45
diameter
: 15
zone3:
name
:
"Treasure Zone"
type
: ITEM_DROP
status
: true
items
:
-
"DIAMOND"
-
"EMERALD"
amount
: 5
particles
:
"ENCHANTMENT_TABLE"
duration
: 90
diameter
: 25
zone4:
name
:
"Healing Zone"
type
: HEAL
status
: true
heal_amount
: 10
particles
:
"HEART"
duration
: 50
diameter
: 10
zone5:
name
:
"Damage Zone"
type
: DAMAGE
status
: true
damage_amount
: 8
particles
:
"CRIT"
duration
: 60
diameter
: 5
zone6:
name
:
"Item Removal Zone"
type
: ITEM_REMOVE
status
: true
amount_to_remove
: 3
particles
:
"CLOUD"
duration
: 30
diameter
: 18
zone7:
name
:
"Item Give Zone"
type
: ITEM_GIVE
status
: true
items
:
-
"GOLD_INGOT"
-
"IRON_INGOT"
amount
: 10
particles
:
"TOTEM"
duration
: 75
diameter
: 45
zone8:
name
:
"Currency Reward Zone"
type
: CURRENCY_ADD
status
: true
currency_amount
: 50
particles
:
"SPELL"
duration
: 90
diameter
: 15
zone9:
name
:
"Mob Spawn Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"ZOMBIE"
-
"SKELETON"
amount
: 4
particles
:
"EXPLOSION_NORMAL"
duration
: 120
diameter
: 30
zone10:
name
:
"Instant Kill Zone"
type
: INSTANT_KILL
status
: true
particles
:
"SPORE_BLOSSOM_AIR"
duration
: 20
diameter
: 35
zone11:
name
:
"Fire Zone"
type
: BURN
status
: true
burn_duration
: 200
particles
:
"FLAME"
duration
: 40
diameter
: 16
zone12:
name
:
"Freezing Zone"
type
: POTION_EFFECT
status
: true
effect
:
"slowness"
effect_duration
: 400
particles
:
"SNOWBALL"
duration
: 45
diameter
: 20
zone13:
name
:
"Lava Trap Zone"
type
: BURN
status
: true
burn_duration
: 300
particles
:
"LAVA"
duration
: 60
diameter
: 10
zone14:
name
:
"Health Drain Zone"
type
: DAMAGE
status
: true
damage_amount
: 6
particles
:
"VILLAGER_ANGRY"
duration
: 50
diameter
: 12
zone15:
name
:
"Speed Boost Zone"
type
: POTION_EFFECT
status
: true
effect
:
"speed"
effect_duration
: 300
particles
:
"VILLAGER_HAPPY"
duration
: 40
diameter
: 15
zone16:
name
:
"Treasure Vault Zone"
type
: ITEM_DROP
status
: true
items
:
-
"GOLD_INGOT"
-
"DIAMOND"
amount
: 5
particles
:
"ENCHANTMENT_TABLE"
duration
: 120
diameter
: 30
zone17:
name
:
"Zombie Invasion Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"ZOMBIE"
-
"ZOMBIE_VILLAGER"
amount
: 6
particles
:
"BUBBLE"
duration
: 100
diameter
: 25
zone18:
name
:
"Golden Reward Zone"
type
: ITEM_GIVE
status
: true
items
:
-
"GOLD_INGOT"
-
"GOLDEN_APPLE"
amount
: 8
particles
:
"TOTEM"
duration
: 70
diameter
: 30
zone19:
name
:
"Thief Zone"
type
: ITEM_REMOVE
status
: true
amount_to_remove
: 5
particles
:
"CLOUD"
duration
: 35
diameter
: 15
zone20:
name
:
"Emerald Rain Zone"
type
: ITEM_DROP
status
: true
items
:
-
"EMERALD"
amount
: 10
particles
:
"CRIT_MAGIC"
duration
: 80
diameter
: 20
zone21:
name
:
"Lightning Strike Zone"
type
: DAMAGE
status
: true
damage_amount
: 15
particles
:
"ELECTRIC_SPARK"
duration
: 30
diameter
: 12
zone22:
name
:
"Banker's Delight Zone"
type
: CURRENCY_ADD
status
: true
currency_amount
: 100
particles
:
"SPELL_INSTANT"
duration
: 60
diameter
: 18
zone23:
name
:
"Fishing Frenzy Zone"
type
: ITEM_GIVE
status
: true
items
:
-
"TROPICAL_FISH"
-
"SALMON"
amount
: 15
particles
:
"WATER_SPLASH"
duration
: 50
diameter
: 20
zone24:
name
:
"Enderman's Curse Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"ENDERMAN"
amount
: 3
particles
:
"PORTAL"
duration
: 90
diameter
: 20
zone25:
name
:
"Fireproof Zone"
type
: POTION_EFFECT
status
: true
effect
:
"fire_resistance"
effect_duration
: 600
particles
:
"FLAME"
duration
: 100
diameter
: 15
zone26:
name
:
"Regeneration Zone"
type
: HEAL
status
: true
heal_amount
: 20
particles
:
"HEART"
duration
: 70
diameter
: 25
zone27:
name
:
"Explosive Zone"
type
: DAMAGE
status
: true
damage_amount
: 25
particles
:
"EXPLOSION_LARGE"
duration
: 45
diameter
: 10
zone28:
name
:
"Vampire's Bite Zone"
type
: DAMAGE
status
: true
damage_amount
: 5
particles
:
"SUSPENDED"
duration
: 55
diameter
: 15
zone29:
name
:
"Protection Zone"
type
: POTION_EFFECT
status
: true
effect
:
"resistance"
effect_duration
: 500
particles
:
"LAVA"
duration
: 60
diameter
: 20
zone30:
name
:
"Explosion Trap Zone"
type
: DAMAGE
status
: true
damage_amount
: 12
particles
:
"EXPLOSION_LARGE"
duration
: 45
diameter
: 20
zone31:
name
:
"Emerald Treasure Zone"
type
: ITEM_DROP
status
: true
items
:
-
"EMERALD"
amount
: 6
particles
:
"CAMPFIRE_SIGNAL_SMOKE"
duration
: 75
diameter
: 30
zone32:
name
:
"Nausea Zone"
type
: POTION_EFFECT
status
: true
effect
:
"nausea"
effect_duration
: 200
particles
:
"PORTAL"
duration
: 60
diameter
: 10
zone33:
name
:
"Golden Apple Zone"
type
: ITEM_GIVE
status
: true
items
:
-
"GOLDEN_APPLE"
amount
: 4
particles
:
"TOTEM"
duration
: 50
diameter
: 25
zone34:
name
:
"Blaze Trap Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"BLAZE"
amount
: 3
particles
:
"FLAME"
duration
: 70
diameter
: 15
zone35:
name
:
"Poisonous Trap"
type
: POTION_EFFECT
status
: true
effect
:
"poison"
effect_duration
: 300
particles
:
"SMOKE_LARGE"
duration
: 40
diameter
: 10
zone36:
name
:
"Health Reward Zone"
type
: HEAL
status
: true
heal_amount
: 15
particles
:
"HEART"
duration
: 30
diameter
: 12
zone37:
name
:
"Zombie Horde Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"ZOMBIE"
-
"HUSK"
amount
: 7
particles
:
"BUBBLE"
duration
: 90
diameter
: 40
zone38:
name
:
"Creeper Surprise Zone"
type
: DAMAGE
status
: true
damage_amount
: 20
particles
:
"EXPLOSION_NORMAL"
duration
: 25
diameter
: 8
zone39:
name
:
"XP Boost Zone"
type
: CURRENCY_ADD
status
: true
currency_amount
: 150
particles
:
"SPELL_MOB"
duration
: 60
diameter
: 20
zone40:
name
:
"Skeleton Army Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"SKELETON"
amount
: 5
particles
:
"DRAGON_BREATH"
duration
: 80
diameter
: 30
zone41:
name
:
"Fireproof Zone"
type
: POTION_EFFECT
status
: true
effect
:
"fire_resistance"
effect_duration
: 500
particles
:
"LAVA"
duration
: 50
diameter
: 20
zone42:
name
:
"Golden Tools Zone"
type
: ITEM_GIVE
status
: true
items
:
-
"GOLDEN_PICKAXE"
-
"GOLDEN_AXE"
amount
: 2
particles
:
"TOTEM_OF_UNDYING"
duration
: 30
diameter
: 18
zone43:
name
:
"Quick Escape Zone"
type
: POTION_EFFECT
status
: true
effect
:
"speed"
effect_duration
: 250
particles
:
"CLOUD"
duration
: 20
diameter
: 12
zone44:
name
:
"Frozen Trap Zone"
type
: POTION_EFFECT
status
: true
effect
:
"slowness"
effect_duration
: 200
particles
:
"SNOW_SHOVEL"
duration
: 50
diameter
: 12
zone45:
name
:
"Blast Protection Zone"
type
: POTION_EFFECT
status
: true
effect
:
"resistance"
effect_duration
: 400
particles
:
"EXPLOSION_HUGE"
duration
: 70
diameter
: 15
zone46:
name
:
"Diamond Drop Zone"
type
: ITEM_DROP
status
: true
items
:
-
"DIAMOND"
amount
: 3
particles
:
"ENCHANTMENT_TABLE"
duration
: 40
diameter
: 30
zone47:
name
:
"Healing Aura Zone"
type
: HEAL
status
: true
heal_amount
: 10
particles
:
"HEART"
duration
: 45
diameter
: 20
zone48:
name
:
"Currency Reward Zone"
type
: CURRENCY_ADD
status
: true
currency_amount
: 80
particles
:
"SPELL"
duration
: 60
diameter
: 10
zone49:
name
:
"Thunder Strike Zone"
type
: DAMAGE
status
: true
damage_amount
: 25
particles
:
"ELECTRIC_SPARK"
duration
: 30
diameter
: 15
zone50:
name
:
"Skeleton Sniper Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"SKELETON"
amount
: 4
particles
:
"CRIT"
duration
: 70
diameter
: 20
zone51:
name
:
"Spider Ambush Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"SPIDER"
amount
: 5
particles
:
"ITEM_COBWEB"
duration
: 50
diameter
: 20
zone52:
name
:
"Regeneration Zone"
type
: POTION_EFFECT
status
: true
effect
:
"regeneration"
effect_duration
: 350
particles
:
"TOTEM"
duration
: 45
diameter
: 15
zone53:
name
:
"Wither Zone"
type
: POTION_EFFECT
status
: true
effect
:
"wither"
effect_duration
: 400
particles
:
"SMOKE_NORMAL"
duration
: 60
diameter
: 10
zone54:
name
:
"Enderman's Surprise Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"ENDERMAN"
amount
: 3
particles
:
"PORTAL"
duration
: 80
diameter
: 30
zone55:
name
:
"Hunger Trap Zone"
type
: POTION_EFFECT
status
: true
effect
:
"hunger"
effect_duration
: 300
particles
:
"SUSPENDED"
duration
: 40
diameter
: 12
zone56:
name
:
"Blaze Rain Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"BLAZE"
amount
: 4
particles
:
"FLAME"
duration
: 70
diameter
: 25
zone57:
name
:
"Poisonous Cloud Zone"
type
: POTION_EFFECT
status
: true
effect
:
"poison"
effect_duration
: 250
particles
:
"SMOKE_LARGE"
duration
: 35
diameter
: 12
zone58:
name
:
"Slime Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"SLIME"
amount
: 6
particles
:
"SLIME"
duration
: 60
diameter
: 20
zone59:
name
:
"Instant Health Zone"
type
: HEAL
status
: true
heal_amount
: 25
particles
:
"HEART"
duration
: 30
diameter
: 18
zone60:
name
:
"Thief's Reward Zone"
type
: ITEM_GIVE
status
: true
items
:
-
"GOLD_INGOT"
-
"EMERALD"
amount
: 10
particles
:
"CAMPFIRE_COSY_SMOKE"
duration
: 60
diameter
: 25
zone61:
name
:
"Instant Kill Zone"
type
: INSTANT_KILL
status
: true
particles
:
"SPORE_BLOSSOM_AIR"
duration
: 15
diameter
: 35
zone62:
name
:
"Currency Boost Zone"
type
: CURRENCY_ADD
status
: true
currency_amount
: 250
particles
:
"DRAGON_BREATH"
duration
: 70
diameter
: 25
zone63:
name
:
"Fishing Zone"
type
: ITEM_DROP
status
: true
items
:
-
"SALMON"
amount
: 10
particles
:
"WATER_SPLASH"
duration
: 40
diameter
: 15
zone64:
name
:
"Spider Nest Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"SPIDER"
amount
: 4
particles
:
"ITEM_COBWEB"
duration
: 50
diameter
: 20
zone65:
name
:
"Blinding Trap Zone"
type
: POTION_EFFECT
status
: true
effect
:
"blindness"
effect_duration
: 150
particles
:
"CLOUD"
duration
: 20
diameter
: 15
zone66:
name
:
"Snowball Fight Zone"
type
: ITEM_GIVE
status
: true
items
:
-
"SNOWBALL"
amount
: 30
particles
:
"SNOWBALL"
duration
: 60
diameter
: 20
zone67:
name
:
"Skeleton Assault Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"SKELETON"
amount
: 6
particles
:
"CRIT"
duration
: 90
diameter
: 30
zone68:
name
:
"Emerald Gift Zone"
type
: ITEM_GIVE
status
: true
items
:
-
"EMERALD"
amount
: 5
particles
:
"VILLAGER_HAPPY"
duration
: 30
diameter
: 10
zone69:
name
:
"Instant Health Zone"
type
: HEAL
status
: true
heal_amount
: 20
particles
:
"HEART"
duration
: 30
diameter
: 12
zone70:
name
:
"Burning Inferno Zone"
type
: BURN
status
: true
burn_duration
: 400
particles
:
"FLAME"
duration
: 80
diameter
: 50
zone71:
name
:
"Quick Escape Zone"
type
: POTION_EFFECT
status
: true
effect
:
"speed"
effect_duration
: 250
particles
:
"CLOUD"
duration
: 30
diameter
: 12
zone72:
name
:
"Regeneration Aura Zone"
type
: POTION_EFFECT
status
: true
effect
:
"regeneration"
effect_duration
: 300
particles
:
"TOTEM"
duration
: 50
diameter
: 30
zone73:
name
:
"Instant Kill Danger Zone"
type
: INSTANT_KILL
status
: true
particles
:
"SPORE_BLOSSOM_AIR"
duration
: 15
diameter
: 20
zone74:
name
:
"Thunderous Surprise Zone"
type
: DAMAGE
status
: true
damage_amount
: 15
particles
:
"ELECTRIC_SPARK"
duration
: 20
diameter
: 25
zone75:
name
:
"Miner's Delight Zone"
type
: ITEM_GIVE
status
: true
items
:
-
"IRON_PICKAXE"
amount
: 1
particles
:
"DRAGON_BREATH"
duration
: 45
diameter
: 20
zone76:
name
:
"Blindness Trap Zone"
type
: POTION_EFFECT
status
: true
effect
:
"blindness"
effect_duration
: 150
particles
:
"CLOUD"
duration
: 20
diameter
: 12
zone77:
name
:
"Withering Trap Zone"
type
: POTION_EFFECT
status
: true
effect
:
"wither"
effect_duration
: 250
particles
:
"SMOKE_LARGE"
duration
: 45
diameter
: 20
zone78:
name
:
"Explosive Danger Zone"
type
: DAMAGE
status
: true
damage_amount
: 20
particles
:
"EXPLOSION_HUGE"
duration
: 25
diameter
: 15
zone79:
name
:
"Iron Reward Zone"
type
: ITEM_GIVE
status
: true
items
:
-
"IRON_INGOT"
amount
: 10
particles
:
"CAMPFIRE_SIGNAL_SMOKE"
duration
: 30
diameter
: 25
zone80:
name
:
"Creeper Ambush Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"CREEPER"
amount
: 4
particles
:
"SUSPENDED"
duration
: 60
diameter
: 30
zone81:
name
:
"Magical Spell Zone"
type
: POTION_EFFECT
status
: true
effect
:
"invisibility"
effect_duration
: 500
particles
:
"SPELL"
duration
: 50
diameter
: 20
zone82:
name
:
"Healing Fountain Zone"
type
: HEAL
status
: true
heal_amount
: 15
particles
:
"HEART"
duration
: 40
diameter
: 10
zone83:
name
:
"Zombie Apocalypse Zone"
type
: MOB_SPAWN
status
: true
mobs
:
-
"ZOMBIE"
-
"HUSK"
amount
: 10
particles
:
"BUBBLE"
duration
: 80
diameter
: 40
zone84:
name
:
"Diamond Treasure Zone"
type
: ITEM_DROP
status
: true
items
:
-
"DIAMOND"
amount
: 5
particles
:
"ENCHANTMENT_TABLE"
duration
: 70
diameter
: 25
zone85:
name
:
"Lightning Strike Zone"
type
: DAMAGE
status
: true
damage_amount
: 15
particles
:
"ELECTRIC_SPARK"
duration
: 30
diameter
: 20
zone86:
name
:
"Instant Health Reward"
type
: HEAL
status
: true
heal_amount
: 25
particles
:
"HEART"
duration
: 30
diameter
: 15
zone87:
name
:
"Golden Ingots Zone"
type
: ITEM_GIVE
status
: true
items
:
-
"GOLD_INGOT"
amount
: 5
particles
:
"TOTEM"
duration
: 40
diameter
: 12
zone88:
name
:
"Burning Surprise Zone"
type
: BURN
status
: true
burn_duration
: 200
particles
:
"FLAME"
duration
: 45
diameter
: 15
zone89:
name
:
"Fire Protection Zone"
type
: POTION_EFFECT
status
: true
effect
:
"fire_resistance"
effect_duration
: 500
particles
:
"LAVA"
duration
: 60
diameter
: 20
zone90:
name
:
"Archer's Reward Zone"
type
: ITEM_GIVE
status
: true
items
:
-
"BOW"
-
"ARROW"
amount
: 20
particles
:
"VILLAGER_HAPPY"
duration
: 50
diameter
: 25
zone91:
name
:
"Random Teleport Zone"
type
: TELEPORT
status
: true
teleport_radius
: 50
particles
:
"END_ROD"
duration
: 45
diameter
: 20
zone92:
name
:
"Quick Escape Zone"
type
: TELEPORT
status
: true
teleport_radius
: 100
particles
:
"CLOUD"
duration
: 30
diameter
: 15
zone93:
name
:
"Mysterious Warp Zone"
type
: TELEPORT
status
: true
teleport_radius
: 75
particles
:
"SPELL_WITCH"
duration
: 60
diameter
: 25
zone94:
name
:
"Teleportation Trap"
type
: TELEPORT
status
: true
teleport_radius
: 30
particles
:
"PORTAL"
duration
: 20
diameter
: 10
zone95:
name
:
"Warp Zone"
type
: TELEPORT
status
: true
teleport_radius
: 150
particles
:
"ENCHANTMENT_TABLE"
duration
: 90
diameter
: 40
zone96:
name
:
"Portal Zone"
type
: TELEPORT
status
: true
teleport_radius
: 50
particles
:
"DRAGON_BREATH"
duration
: 40
diameter
: 18
zone97:
name
:
"Emergency Exit Zone"
type
: TELEPORT
status
: true
teleport_radius
: 80
particles
:
"FIREWORKS_SPARK"
duration
: 50
diameter
: 22
zone98:
name
:
"Chaos Zone"
type
: TELEPORT
status
: true
teleport_radius
: 120
particles
:
"FLAME"
duration
: 35
diameter
: 16
zone99:
name
:
"Safe Haven Zone"
type
: TELEPORT
status
: true
teleport_radius
: 20
particles
:
"HEART"
duration
: 25
diameter
: 12
zone100:
name
:
"Void Walker Zone"
type
: TELEPORT
status
: true
teleport_radius
: 60
particles
:
"SPORE_BLOSSOM_AIR"
duration
: 55
diameter
: 18
zone101:
name
:
"Icy Speed Zone"
type
: SLIPPERY
status
: true
speed_multiplier
: 2
effect_duration
: 200
particles
:
"SNOWBALL"
duration
: 45
diameter
: 20
zone102:
name
:
"Oil Spill Zone"
type
: SLIPPERY
status
: true
speed_multiplier
: 3
effect_duration
: 150
particles
:
"SLIME"
duration
: 30
diameter
: 15
zone103:
name
:
"Wet Grass Zone"
type
: SLIPPERY
status
: true
speed_multiplier
: 1
effect_duration
: 300
particles
:
"WATER_SPLASH"
duration
: 60
diameter
: 25
zone104:
name
:
"Frozen Steps Zone"
type
: SLIPPERY
status
: true
speed_multiplier
: 4
effect_duration
: 100
particles
:
"SNOW_SHOVEL"
duration
: 40
diameter
: 10
zone105:
name
:
"Slippery Rock Zone"
type
: SLIPPERY
status
: true
speed_multiplier
: 2
effect_duration
: 250
particles
:
"DRIPPING_WATER"
duration
: 35
diameter
: 18
zone106:
name
:
"Mossy Zone"
type
: SLIPPERY
status
: true
speed_multiplier
: 3
effect_duration
: 200
particles
:
"FALLING_WATER"
duration
: 50
diameter
: 22
zone107:
name
:
"Ice Path Zone"
type
: SLIPPERY
status
: true
speed_multiplier
: 5
effect_duration
: 120
particles
:
"WHITE_ASH"
duration
: 25
diameter
: 12
zone108:
name
:
"Slick Sand Zone"
type
: SLIPPERY
status
: true
speed_multiplier
: 2
effect_duration
: 300
particles
:
"CLOUD"
duration
: 60
diameter
: 20
zone109:
name
:
"Greasy Surface Zone"
type
: SLIPPERY
status
: true
speed_multiplier
: 4
effect_duration
: 180
particles
:
"END_ROD"
duration
: 30
diameter
: 15
zone110:
name
:
"Fast Fog Zone"
type
: SLIPPERY
status
: true
speed_multiplier
: 3
effect_duration
: 250
particles
:
"FALLING_DUST"
duration
: 45
diameter
: 25
zone111:
name
:
"XP Fountain"
type
: EXPERIENCE
status
: true
experience_amount
: 50
particles
:
"ENCHANTMENT_TABLE"
duration
: 60
diameter
: 10
zone112:
name
:
"Knowledge Burst"
type
: EXPERIENCE
status
: true
experience_amount
: 100
particles
:
"SPELL_MOB"
duration
: 45
diameter
: 15
zone113:
name
:
"Wisdom Well"
type
: EXPERIENCE
status
: true
experience_amount
: 75
particles
:
"DRAGON_BREATH"
duration
: 50
diameter
: 12
zone114:
name
:
"Scholar's Sanctuary"
type
: EXPERIENCE
status
: true
experience_amount
: 120
particles
:
"TOTEM_OF_UNDYING"
duration
: 70
diameter
: 20
zone115:
name
:
"Enlightenment Zone"
type
: EXPERIENCE
status
: true
experience_amount
: 90
particles
:
"VILLAGER_HAPPY"
duration
: 55
diameter
: 18
zone116:
name
:
"XP Oasis"
type
: EXPERIENCE
status
: true
experience_amount
: 60
particles
:
"HEART"
duration
: 40
diameter
: 14
zone117:
name
:
"Experience Expanse"
type
: EXPERIENCE
status
: true
experience_amount
: 110
particles
:
"CLOUD"
duration
: 65
diameter
: 22
zone118:
name
:
"Learning Lagoon"
type
: EXPERIENCE
status
: true
experience_amount
: 80
particles
:
"WATER_SPLASH"
duration
: 50
diameter
: 16
zone119:
name
:
"XP Meadow"
type
: EXPERIENCE
status
: true
experience_amount
: 95
particles
:
"CRIT"
duration
: 60
diameter
: 20
zone120:
name
:
"Mystic XP Field"
type
: EXPERIENCE
status
: true
experience_amount
: 130
particles
:
"PORTAL"
duration
: 75
diameter
: 25
zone121:
name
:
"Skyward Launch Zone"
type
: LAUNCH
status
: true
launch_power
: 1.5
particles
:
"CLOUD"
duration
: 30
diameter
: 10
zone122:
name
:
"Rocket Boost Zone"
type
: LAUNCH
status
: true
launch_power
: 2.0
particles
:
"FIREWORK"
duration
: 45
diameter
: 12
zone123:
name
:
"Geyser Blast Zone"
type
: LAUNCH
status
: true
launch_power
: 1.8
particles
:
"WATER_SPLASH"
duration
: 40
diameter
: 15
zone124:
name
:
"Volcanic Eruption Zone"
type
: LAUNCH
status
: true
launch_power
: 2.2
particles
:
"LAVA"
duration
: 35
diameter
: 14
zone125:
name
:
"Tornado Lift Zone"
type
: LAUNCH
status
: true
launch_power
: 1.7
particles
:
"CAMPFIRE_COSY_SMOKE"
duration
: 50
diameter
: 20
zone126:
name
:
"Springboard Zone"
type
: LAUNCH
status
: true
launch_power
: 1.3
particles
:
"SLIME"
duration
: 25
diameter
: 8
zone127:
name
:
"Jetpack Zone"
type
: LAUNCH
status
: true
launch_power
: 2.5
particles
:
"DRAGON_BREATH"
duration
: 60
diameter
: 18
zone128:
name
:
"Whirlwind Zone"
type
: LAUNCH
status
: true
launch_power
: 1.6
particles
:
"WHITE_ASH"
duration
: 30
diameter
: 10
zone129:
name
:
"Cannon Blast Zone"
type
: LAUNCH
status
: true
launch_power
: 2.3
particles
:
"EXPLOSION"
duration
: 40
diameter
: 12
zone130:
name
:
"Eagle's Flight Zone"
type
: LAUNCH
status
: true
launch_power
: 1.9
particles
:
"CLOUD"
duration
: 45
diameter
: 15
zone131:
name
:
"Thunderous Plains"
type
: LIGHTNING_STRIKE
status
: true
damage_amount
: 10
particles
:
"ELECTRIC_SPARK"
duration
: 60
diameter
: 20
zone132:
name
:
"Stormy Summit"
type
: LIGHTNING_STRIKE
status
: true
damage_amount
: 15
particles
:
"CLOUD"
duration
: 45
diameter
: 25
zone133:
name
:
"Electrified Forest"
type
: LIGHTNING_STRIKE
status
: true
damage_amount
: 12
particles
:
"CRIT_MAGIC"
duration
: 50
diameter
: 30
zone134:
name
:
"Charged Desert"
type
: LIGHTNING_STRIKE
status
: true
damage_amount
: 8
particles
:
"ASH"
duration
: 40
diameter
: 15
zone135:
name
:
"Voltage Valley"
type
: LIGHTNING_STRIKE
status
: true
damage_amount
: 20
particles
:
"DRAGON_BREATH"
duration
: 55
diameter
: 35
zone136:
name
:
"Electric Swamp"
type
: LIGHTNING_STRIKE
status
: true
damage_amount
: 10
particles
:
"SNEEZE"
duration
: 60
diameter
: 20
zone137:
name
:
"Lightning Lagoon"
type
: LIGHTNING_STRIKE
status
: true
damage_amount
: 14
particles
:
"WATER_SPLASH"
duration
: 50
diameter
: 25
zone138:
name
:
"Static Savannah"
type
: LIGHTNING_STRIKE
status
: true
damage_amount
: 9
particles
:
"CAMPFIRE_SIGNAL_SMOKE"
duration
: 45
diameter
: 30
zone139:
name
:
"Thunder Tundra"
type
: LIGHTNING_STRIKE
status
: true
damage_amount
: 11
particles
:
"SNOW_SHOVEL"
duration
: 40
diameter
: 15
zone140:
name
:
"Shocking Shoreline"
type
: LIGHTNING_STRIKE
status
: true
damage_amount
: 13
particles
:
"BUBBLE_POP"
duration
: 55
diameter
: 35
zone141:
name
:
"Creeper's Lair"
type
: EXPLOSION
status
: true
explosion_power
: 4
set_fire
: false
break_blocks
: true
particles
:
"EXPLOSION_LARGE"
duration
: 30
diameter
: 15
zone142:
name
:
"TNT Trap"
type
: EXPLOSION
status
: true
explosion_power
: 5
set_fire
: false
break_blocks
: true
particles
:
"EXPLOSION_HUGE"
duration
: 25
diameter
: 10
zone143:
name
:
"Volatile Minefield"
type
: EXPLOSION
status
: true
explosion_power
: 3
set_fire
: false
break_blocks
: false
particles
:
"EXPLOSION_NORMAL"
duration
: 40
diameter
: 20
zone144:
name
:
"Fireburst Zone"
type
: EXPLOSION
status
: true
explosion_power
: 2
set_fire
: true
break_blocks
: false
particles
:
"FLAME"
duration
: 35
diameter
: 12
zone145:
name
:
"Nether Blast"
type
: EXPLOSION
status
: true
explosion_power
: 6
set_fire
: true
break_blocks
: true
particles
:
"LAVA"
duration
: 20
diameter
: 18
zone146:
name
:
"Ender Explosion"
type
: EXPLOSION
status
: true
explosion_power
: 5
set_fire
: false
break_blocks
: true
particles
:
"DRAGON_BREATH"
duration
: 30
diameter
: 15
zone147:
name
:
"Ghast's Fury"
type
: EXPLOSION
status
: true
explosion_power
: 4
set_fire
: true
break_blocks
: false
particles
:
"SMOKE_LARGE"
duration
: 25
diameter
: 20
zone148:
name
:
"Blazing Detonation"
type
: EXPLOSION
status
: true
explosion_power
: 3
set_fire
: true
break_blocks
: true
particles
:
"CAMPFIRE_SIGNAL_SMOKE"
duration
: 30
diameter
: 10
zone149:
name
:
"Shrapnel Burst"
type
: EXPLOSION
status
: true
explosion_power
: 2
set_fire
: false
break_blocks
: false
particles
:
"CRIT"
duration
: 35
diameter
: 12
zone150:
name
:
"Thunderclap Zone"
type
: EXPLOSION
status
: true
explosion_power
: 5
set_fire
: true
break_blocks
: true
particles
:
"ELECTRIC_SPARK"
duration
: 20
diameter
: 15
zone151:
name
:
"Command Execution Zone"
type
: COMMAND
status
: true
command
:
"give %PLAYER% obsidian 1"
particles
:
"ENCHANTMENT_TABLE"
duration
: 30
diameter
: 10
INSTALLATION
Require: Java 17
Paste .jar file to ../server/plugins
Enjoi!
![[IMG]](//proxy.spigotmc.org/bf739ced36a7af479a5bad2667056e469e7aa0e5/68747470733a2f2f6273746174732e6f72672f7369676e6174757265732f62756b6b69742f4d7973746572795a6f6e65732e737667)