Skip to content

Commit

Permalink
bye to another overwrite
Browse files Browse the repository at this point in the history
  • Loading branch information
Faithcaio committed Jun 4, 2024
1 parent 9087383 commit dc08515
Showing 1 changed file with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,17 +144,26 @@ public final class DamageModifierTypes {
public static final DefaultedRegistryReference<DamageModifierType> OFFENSIVE_POTION_EFFECT = DamageModifierTypes.key(ResourceKey.sponge("offensive_potion_effect"));

/**
* Represents a {@link DamageModifier} that will reduce damage due to
* using a shield.
* Represents a {@link DamageModifier} that will reduce damage due to using a shield.
*/
public static final DefaultedRegistryReference<DamageModifierType> SHIELD = DamageModifierTypes.key(ResourceKey.sponge("shield"));

/**
* Represents a {@link DamageModifier} that is applied for a sweeping
* attack.
* Represents a {@link DamageModifier} that will modify damage from the attacks strength.
* <p>For vanilla this only reduces damage when repeating attacks too quickly</p>
*/
public static final DefaultedRegistryReference<DamageModifierType> ATTACK_STRENGTH = DamageModifierTypes.key(ResourceKey.sponge("attack_strength"));

/**
* Represents a {@link DamageModifier} that is applied for a sweeping attack.
*/
public static final DefaultedRegistryReference<DamageModifierType> SWEEPING = DamageModifierTypes.key(ResourceKey.sponge("sweeping"));

/**
* Represents a {@link DamageModifier} that will add bonus damage based on the weapon used.
*/
public static final DefaultedRegistryReference<DamageModifierType> WEAPON_BONUS = DamageModifierTypes.key(ResourceKey.sponge("weapon_bonus"));

/**
* Represents the {@link DamageModifier} that will modify damage from
* an {@link EnchantmentType} on an equipped {@link ItemStack}.
Expand Down

0 comments on commit dc08515

Please sign in to comment.