IPVGO: Tetrads do def (#1284)

This commit is contained in:
gmcew 2024-05-17 12:59:21 +01:00 committed by GitHub
parent 585e089976
commit 36e3dd73ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

@ -39,7 +39,7 @@ export const opponentDetails = {
description: "Martial AI",
flavorText:
"The faction known as Tetrads prefers to get up close and personal. Their combat style excels at circling around and cutting through their opponents, both on and off of the subnets.",
bonusDescription: "strength, dex, and agility levels",
bonusDescription: "strength, defense, dexterity, and agility levels",
bonusPower: 0.7,
},
[GoOpponent.Daedalus]: {

@ -79,6 +79,7 @@ function calculateMults(): Multipliers {
break;
case GoOpponent.Tetrads:
mults.strength *= effect;
mults.defense *= effect;
mults.dexterity *= effect;
mults.agility *= effect;
break;