Greatly buff android attack boost

This commit is contained in:
DBotThePony 2023-03-18 15:13:53 +07:00
parent 2314b7d91c
commit 90e6fe5f5d
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ fun addResearchData(serializer: Consumer<AndroidResearchType>, lang: MatteryLang
.withDescription(
TranslatableComponent(
"android_research.overdrive_that_matters.attack_boost.description",
(i + 1) * 6
(i + 1) * 12
)
)
.addFeatureResult(AndroidFeatures.ATTACK_BOOST, i)

View File

@ -13,7 +13,7 @@ class AttackBoostFeature(android: MatteryPlayerCapability) : AndroidFeature(Andr
if (modifier != null) {
modifier.removePermanentModifier(MODIFIER_ID)
modifier.addPermanentModifier(AttributeModifier(MODIFIER_ID, type.displayName.toString(), (level + 1) * 0.06, AttributeModifier.Operation.MULTIPLY_TOTAL))
modifier.addPermanentModifier(AttributeModifier(MODIFIER_ID, type.displayName.toString(), (level + 1) * 0.12, AttributeModifier.Operation.MULTIPLY_TOTAL))
}
}