Files
meatballcraft/scripts/mixin/BetweenlandsValoniteShowckwaveBuff.zs
T
2025-10-16 17:49:07 -05:00

22 lines
481 B
Plaintext

#modloaded thebetweenlands
#loader mixin
import mixin.CallbackInfo;
import native.thebetweenlands.common.item.BLMaterialRegistry;
#mixin Mixin
#{targets: "thebetweenlands.common.item.BLMaterialRegistry"}
zenClass MixinBLMaterialRegistry {
#mixin Static
#mixin ModifyConstant
#{
# method: "BLMaterialRegistry",
# constant: {floatValue: 8.0F}
#}
function modifyValoniteShockwaveDamage(original as float) as float {
return 27.0F;
}
}