Skip to content

Commit

Permalink
increase de-buff of no blood effect
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheaterpaul committed Nov 15, 2023
1 parent fb89520 commit 1a92820
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/main/java/de/teamlapen/vampirism/core/ModEffects.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,11 @@ public IFaction<?> getFaction() {
public static final RegistryObject<MobEffect> LORD_SPEED = EFFECTS.register("lord_speed", () -> new VampirismEffect(MobEffectCategory.BENEFICIAL, 0xffffff).addAttributeModifier(Attributes.MOVEMENT_SPEED, "efe607d8-db8a-4156-b9d0-6a0640593057", 0.07F, AttributeModifier.Operation.MULTIPLY_TOTAL));
public static final RegistryObject<MobEffect> LORD_ATTACK_SPEED = EFFECTS.register("lord_attack_speed", () -> new VampirismEffect(MobEffectCategory.BENEFICIAL, 0xffffff).addAttributeModifier(Attributes.ATTACK_SPEED, "a2ca9534-3baf-404f-b159-bc835bf963e6", 0.05F, AttributeModifier.Operation.MULTIPLY_TOTAL));
public static final RegistryObject<MobEffect> NO_BLOOD = EFFECTS.register("no_blood", () -> new VampirismEffect(MobEffectCategory.HARMFUL, 0x191919)
.addAttributeModifier(Attributes.MOVEMENT_SPEED, "48bb1318-3d52-4030-a264-de52b59d03d0", -0.2F, AttributeModifier.Operation.MULTIPLY_TOTAL)
.addAttributeModifier(Attributes.ATTACK_SPEED, "6d9474ab-6693-49f5-9357-ad4444a16bd4", -0.2F, AttributeModifier.Operation.MULTIPLY_TOTAL)
.addAttributeModifier(Attributes.MOVEMENT_SPEED, "48bb1318-3d52-4030-a264-de52b59d03d0", -0.4F, AttributeModifier.Operation.MULTIPLY_TOTAL)
.addAttributeModifier(Attributes.ATTACK_SPEED, "6d9474ab-6693-49f5-9357-ad4444a16bd4", -0.3F, AttributeModifier.Operation.MULTIPLY_TOTAL)
.addAttributeModifier(ModAttributes.SUNDAMAGE.get(), "45ebd53a-14fa-4ede-b4e7-412e075a8b5f", 0.2, AttributeModifier.Operation.MULTIPLY_TOTAL)
.addAttributeModifier(Attributes.ARMOR_TOUGHNESS, "45ebd53a-14fa-4ede-b4e7-412e075a8b5f", -0.3, AttributeModifier.Operation.MULTIPLY_TOTAL)
.addAttributeModifier(Attributes.ARMOR_TOUGHNESS, "45ebd53a-14fa-4ede-b4e7-412e075a8b5f", -0.4, AttributeModifier.Operation.MULTIPLY_TOTAL)
.addAttributeModifier(Attributes.ARMOR, "45ebd53a-14fa-4ede-b4e7-412e075a8b5f", -0.2, AttributeModifier.Operation.MULTIPLY_TOTAL)
);

private static final Logger LOGGER = LogManager.getLogger();
Expand Down

0 comments on commit 1a92820

Please sign in to comment.