Damage type

Jump to navigation Jump to search
This article is about data pack contents. For the game mechanic, see Damage.
This feature is exclusive to Java Edition.
 

Damage types are JSON files located in data packs that define different kinds of damage that entities can take. They control which attributes the damage has as well as which death message is used when an entity dies due to that type of damage.

Additionally, the built-in damage type tags control many aspects of how damage is applied by the game.

Custom damage types can be applied only by using the /damage command.

JSON format[edit | edit source]

Damage types are stored as JSON files within a data pack, at the path data/<namespace>/damage_type/<name>.json.

  • [NBT Compound / JSON Object] The root object.
    • [String] message_id: Used as part of the death message translation key if [String] death_message_type is set to default, as shown below.
    • [Float] exhaustion: The amount of hunger exhaustion caused by this damage type.
    • [String] scaling: Whether this damage type scales with difficulty. Possible values: never, always, or when_caused_by_living_non_player. See below for more detail.
    • [String] effects: Optional field controlling how incoming damage is shown to the player. Possible values: hurt (default), thorns, drowning, burning, poking, freezing. See below for more detail.
    • [String] death_message_type: Optional field that controls the kind of death messages to use. Possible values: default (default), fall_variants, intentional_game_design. See below for more detail.

For example, here is JSON for the built-in minecraft:arrow:

{
	"exhaustion": 0.1,
 	"message_id": "arrow",
	"scaling": "when_caused_by_living_non_player"
}

List of damage types[edit | edit source]

Damage type Sources
arrow
  • Any kind of arrow hitting something
  • A spectral arrow or tipped arrow hitting something
bad_respawn_point
  • A bed or respawn anchor exploding
cactus
campfire
cramming
  • When too many mobs are in one place
dragon_breath
drown
dry_out
ender_pearl
explosion
fall
  • Any entity taking fall damage
  • Riding a entity that took fall damage
falling_anvil
  • A falling anvil hitting something
falling_block
falling_stalactite
fireball
  • A ghast or blaze fireball with an owner hitting an entity directly
fireworks
  • A firework exploding
fly_into_wall
  • Hitting a wall or world border while flying using elytra
freeze
generic
  • Bees dying after stinging
  • Simulating the player_hurt_entity trigger when punching an interaction entity
  • Used in a DamageEvent package
  • When reporting an end crystal killed by /kill to the dragon fight
  • A entity achieving a death that is not assigned to any damage type or is assigned to generic damage type
generic_kill
hot_floor
in_fire
in_wall
  • Ticking damage while stuck in a wall
indirect_magic
lava
  • Ticking damage while in lava
lightning_bolt
mace_smash
  • Extra damage by attacking using mace
magic
  • Simulating a kill with /loot kill
  • Ticking damage from a Harming/Healing effect (i.e. not initial contact)
  • Ticking damage from a Poison effect
  • Evoker fangs with no owner dealing damage
  • A wither skull with no owner hitting something
  • A conduit attack
  • A arrow of harming hitting something
mob_attack
mob_attack_no_aggro
mob_projectile
on_fire
out_of_world
  • Ticking damage in the void
outside_border
player_attack
  • A player hitting a mob
  • A player dealing a sweeping attack
  • Feeding a parrot a cookie
  • A player breaking a non-mob entity
  • When granting the kill_mob_near_sculk_catalyst criteria if the actual damage type couldn't be found
player_explosion
  • Anything in explosion, when it can be determined a player was directly responsible
sonic_boom
spit
stalagmite
starve
  • A vex summoned by an evoker dying after it's time ran out
  • Ticking damage from having no food
sting
sweet_berry_bush
thorns
thrown
trident
unattributed_fireball
  • A ghast or blaze fireball without an owner hitting an entity directly
wind_charge
wither
  • Ticking damage from a Wither effect
wither_skull

Scaling[edit | edit source]

Damage types control whether damage scales with difficulty.​[more information needed]

Possible values of [String] scaling:

  • never: Damage is always the same.
  • always: Damage always scales with difficulty.
  • when_caused_by_living_non_player: Damage scales with difficulty if the attacker[note 1] was a living entity[note 2] and was not a player.

Effects[edit | edit source]

Damage types control how incoming damage is shown to the player.

Possible values of [String] effects:

  • hurt (default): The default hurt sound.
  • thorns: Thorns hurt sound.
  • drowning: Drowning sound.
  • burning: A single tick of burning sound.
  • poking: Berry bush poke sound.
  • freezing: Freezing tick sound.

Death messages[edit | edit source]

Damage types control the death messages displayed when players or pets die.

Possible values of [String] death_message_type:

  • default (default): Use the standard death message logic.
  • fall_variants: Use the fall damage death messages, e.g. death.fell.assist.item.
  • intentional_game_design: Show the "intentional game design" death message.

Default message type[edit | edit source]

When standard death message logic is being used, messages are generated as follows, making use of the [String] message_id tag:

  • If the killing blow was caused by an attacker[note 1] and the attacker was holding a named item in their main hand at the time of death, this is categorized as an item death. A translated message is displayed using the translation key death.attack.<message_id>.item with the following insertions available:
    1. The name of the dying entity.
    2. The name of the attacker.
    3. The name of the item.
  • If the killing blow was not caused by an attacker[note 1], but the dying entity had recently​[more information needed] taken damage that was caused by a living entity[note 2], this is categorized as an assisted death. A translated message is displayed using the translation key death.attack.<message_id>.player with the following insertions available:
    1. The name of the dying entity.
    2. The name of the recent attacker.
  • If neither of the above apply, this is categorized as a normal death. A translated message is displayed using the translation key death.attack.<message_id> with the following insertions available:
    1. The name of the dying entity.
    2. The name of the attacker[note 1], if there was one.

Design[edit | edit source]

Because of how the default death messages are set up, most vanilla damage types are divided into ones that always have an attacker[note 1] and ones that never have an attacker. Depending on whether there was an attacker, the translation for normal deaths (death.attack.<message_id>) has either one or two available insertions. Translations have no safe way to access an insertion that may or may not be there, so the primary options are:

The death type is planned to always have an attacker.

  • The translation looks like
    "death.attack.mob": "%s was slain by %s",
    "death.attack.mob.item": "%s was slain by %s using %s",
    
  • The translation key death.attack.<message_id>.player is not provided, since assisted deaths are impossible.

The death type is planned to never have an attacker.

  • The translation looks like
    "death.attack.drown": "%s drowned",
    "death.attack.drown.player": "%s drowned whilst trying to escape %s",
    
  • The translation key death.attack.<message_id>.item is not provided, since item deaths are impossible.

The death type may or may not have an attacker.

  • The translation looks like
    "death.attack.electricity": "%s was electrocuted",
    "death.attack.electricity.item": "%s was electrocuted by %s using %s",
    "death.attack.electricity.player": "%s was electrocuted whilst trying to escape %s",
    
  • The translation key death.attack.<message_id> avoids using the second insertion, since it may or may not be present.
  • The translation is a little awkward, because the death message when killed by a player mention them only if they're holding a named weapon.

To avoid the awkwardness of the third option you can have two different damage types, one for use with an attacker, and one for use without an attacker:

"death.attack.active_electricity": "%s was electrocuted by %s",
"death.attack.active_electricity.item": "%s was electrocuted by %s using %s",
"death.attack.passive_electricity": "%s was electrocuted",
"death.attack.passive_electricity.player": "%s was electrocuted whilst trying to escape %s",

History[edit | edit source]

[hide]Java Edition
1.19.423w06aAdded damage types to data packs.
1.20pre1Added outside_border, and generic_kill.
1.20.523w51aAdded spit.
1.2124w18aAdded wind_charge.
24w19bAdded campfire.
1.21.224w33aAdded mace_smash and ender_pearl.

External links[edit | edit source]

Notes[edit | edit source]

  1. Jump up to: a b c d e The entity that was responsible for the damage. Also known as the "source entity". For example, if a player is shot by a skeleton, the skeleton is the attacker. If a player is shot by a dispenser, the arrow itself is the attacker. If the player is pricked by a cactus, there is no attacker.
  2. Jump up to: a b This includes armor stands.

References[edit | edit source]

  1. MC-84595 — "Roasted in dragon's breath" death message does not appear when player is killed by dragon's breath

Navigation[edit | edit source]