Voxel
  • Welcome
  • Community & Support
  • Question and Answer for Datapacks
  • Neo Enchant+
    • Getting Started
  • Enchantment
    • Armor Enchantment
      • Fury
      • Venom Protection
      • Life+
    • Helmet Enchantment
      • Voidless
      • Auto Feed
      • Bright Vision
    • Chestplate Enchantment
      • Magnet
      • Builder Arm
    • Legs Enchantment
      • Leaping
      • Dwarfed
      • Fast Swim
      • Oversize
    • Feet Enchantment
      • Step Assist
      • Agility
      • Lava Walker
    • Tools Enchantment
      • Mining+
      • Auto Smelt
      • Timber
      • Vein Miner
      • Bedrock Breaker
      • Spawner Touch
      • Harvest
      • Scyther
    • Bow Enchantment
      • Breezing Arrow
      • Storm Arrow
      • Rebound
      • Eternal Frost
      • Accuracy Shot
      • Echo Shot
      • Explosive Arrow
    • Weapon Enchantment
      • Teluric Wave
      • Wind Propulsion
      • Striker
      • Fear
      • Critical
      • Dimensionnal Hit
      • Life Steal
      • Last Hope
      • Tears of Asflors
      • Attack Speed
      • Poison Aspect
      • Pull
      • Death Touch
      • Runic Despair
      • Reach
      • Gungnir Breath
    • Mounted Enchantment
      • Cavalier Egis
      • Steel Fangs
      • Velocity
      • Ethereal Leap
    • Other
      • Midas Touch
      • Curse Of Enchant
      • Curse Of Breaking
      • Kinectic Protection
      • Armored
      • XP Boost
  • Non Combinable
  • Compatibility with other mods
  • Modify balancing
  • Technical
    • Block Configuration
    • Entity Configuration
    • Special: Auto Smelt
  • Yggdrasil
    • Getting Started
    • Structure
      • Asflors Village
      • Alfheim
      • Asgards
      • Helheim
      • Runic Alfheim
      • Runic Island
      • Runic Labyrinth
      • Dokkalfar Ruins
      • Glaosheimr
      • Cubeoid
      • Steles
  • Runic Dimension
  • The items
  • Reva (Pet)
  • Configurator & Tools
    • Getting Started
    • Disable/Balance enchantment
    • Update pack
    • Convert Datapack to Mods
    • Technical
      • How your files are processed
      • How the configurator applies modifications
      • Collected data
      • How migration is managed
      • Safety measures
Powered by GitBook
On this page
  • How Entity Type Tags Work
  • Entity Groups with
  • Available Entity Type Tags
  1. Technical

Entity Configuration

Entity type tags define which entities are affected (or not affected) by certain enchantments. These tags are located in the data/enchantplus/tags/entity_type/ directory.

How Entity Type Tags Work

Entity type tags are JSON files that specify lists of entities that should be included or excluded from certain enchantment effects. They work similarly to block tags but apply to living entities, projectiles, and other in-game objects.

You can:

  • Include specific entity types by their ID (e.g., "minecraft:cow")

  • Reference groups of entities using the # prefix (e.g., "#minecraft:aquatic")

  • Exclude entities from existing groups


Entity Groups with

Like with block tags, the # prefix references predefined groups of entities:

  • #minecraft:aquatic - Water-dwelling entities like fish and dolphins

  • #minecraft:arrows - All arrow projectiles

  • #voxel:boat - All types of boats

  • #voxel:minecart - All types of minecarts

  • #voxel:non_living - Non-living entities like item frames and paintings

  • #voxel:projectile - All projectile entities (arrows, tridents, etc.)


Available Entity Type Tags

Last Hope Blacklist (last_hope_blacklist.json)

Defines entities that cannot be targeted by the Last Hope enchantment. This tag prevents the enchantment from being used against certain entities, such as players.

The current values
{
    "values": [
        "minecraft:player"
    ]
}

Rebound Blacklist (rebound_blacklist.json)

Defines entities that arrows with the Rebound enchantment cannot bounce off. This prevents the enchanted arrows from interacting with certain entity types.

The current values
{
    "replace": false,
    "values": [
        "#minecraft:aquatic",
        "#minecraft:arrows",
        "#voxel:boat",
        "#voxel:dev",
        "#voxel:minecart",
        "#voxel:non_living",
        "#voxel:projectile",
        "minecraft:player"
    ]
}

Telluric Blacklist (teluric_blacklist.json)

Defines entities that cannot be affected by the Telluric Wave enchantment. This prevents the seismic wave effect from affecting certain entity types.

The current values
{
    "replace": false,
    "values": [
        "#minecraft:aquatic",
        "#minecraft:arrows",
        "#voxel:boat",
        "#voxel:dev",
        "#voxel:minecart",
        "#voxel:non_living",
        "#voxel:projectile",
        "minecraft:player"
    ]
}
PreviousBlock ConfigurationNextSpecial: Auto Smelt

Last updated 2 months ago