Skip to content

Commit

Permalink
Merge pull request #339 from Makar8000/sam-pot-fix
Browse files Browse the repository at this point in the history
Fix SAM potencies
  • Loading branch information
xpdota authored Oct 3, 2024
2 parents 45cc081 + 8aafcb1 commit d00c527
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,7 @@ export const Opener: SamAbility[] = [
Actions.Gyofu,
Actions.Yukikaze,
Actions.MidareSetsugekka,
Actions.HissatsuShinten,
Actions.KaeshiSetsugekka,
];

Expand Down
18 changes: 9 additions & 9 deletions packages/core/src/sims/melee/sam/sam_actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const Gyofu: SamGcdAbility = {
name: "Gyofu",
id: 36963,
attackType: "Weaponskill",
potency: 240,
potency: 230,
gcd: 2.5,
cast: 0,
updateGauge: (gauge: SAMGauge) => {
Expand All @@ -23,7 +23,7 @@ export const Yukikaze: SamGcdAbility = {
name: "Yukikaze",
id: 7480,
attackType: "Weaponskill",
potency: 360,
potency: 340,
gcd: 2.5,
cast: 0,
updateGauge: (gauge: SAMGauge) => {
Expand All @@ -37,7 +37,7 @@ export const Jinpu: SamGcdAbility = {
name: "Jinpu",
id: 7478,
attackType: "Weaponskill",
potency: 320,
potency: 300,
gcd: 2.5,
cast: 0,
activatesBuffs: [Fugetsu],
Expand All @@ -51,7 +51,7 @@ export const Shifu: SamGcdAbility = {
name: "Shifu",
id: 7479,
attackType: "Weaponskill",
potency: 320,
potency: 300,
gcd: 2.5,
cast: 0,
activatesBuffs: [Fuka],
Expand All @@ -65,7 +65,7 @@ export const Gekko: SamGcdAbility = {
name: "Gekko",
id: 7481,
attackType: "Weaponskill",
potency: 440,
potency: 420,
gcd: 2.5,
cast: 0,
updateGauge: (gauge: SAMGauge) => {
Expand All @@ -79,7 +79,7 @@ export const Kasha: SamGcdAbility = {
name: "Kasha",
id: 7482,
attackType: "Weaponskill",
potency: 440,
potency: 420,
gcd: 2.5,
cast: 0,
updateGauge: (gauge: SAMGauge) => {
Expand All @@ -93,7 +93,7 @@ export const MidareSetsugekka: SamGcdAbility = {
name: "Midare Setsugekka",
id: 7487,
attackType: "Weaponskill",
potency: 700,
potency: 640,
autoCrit: true,
gcd: 2.5,
cast: 1.3,
Expand Down Expand Up @@ -211,7 +211,7 @@ export const Zanshin: KenkiAbility = {
name: "Zanshin",
id: 36964,
attackType: "Ability",
potency: 900,
potency: 820,
updateGauge: gauge => gauge.kenkiGauge -= 50,
kenkiCost: 50,
};
Expand All @@ -231,7 +231,7 @@ export const HissatsuSenei: KenkiAbility = {
name: "Hissatsu: Senei",
id: 16481,
attackType: "Ability",
potency: 860,
potency: 800,
cooldown: {
time: 60,
},
Expand Down

0 comments on commit d00c527

Please sign in to comment.