commit
0a881a47a9
|
|
@ -0,0 +1,44 @@
|
|||
/**
|
||||
* Diablo II: Lord of Destruction v1.13c — Skill #014: Power Strike (AMA)
|
||||
*
|
||||
* Authoritative 1.13c Ground Truth (`Patch_D2.mpq` -> `data\\global\\excel\\Skills.txt`):
|
||||
* - Skill ID: 14 ("Power Strike")
|
||||
* - Class: "ama"
|
||||
* - Required Level: 6
|
||||
* - Server Functions: srvstfunc=6, srvdofunc=2, srvprgfunc1=0, srvprgfunc2=0, srvprgfunc3=0
|
||||
* - Associated Missile / State / Summon: missile="", state="", summon=""
|
||||
* - 1.13c Synergy Formulas: EDmgSymPerCalc="(skill('Lightning Strike'.blvl)+skill('Lightning Bolt'.blvl)+skill('Charged Strike'.blvl)+skill('Lightning Fury'.blvl)) * par8", DmgSymPerCalc="", ELenSymPerCalc=""
|
||||
*/
|
||||
import type {
|
||||
SkillEvalContext,
|
||||
SkillEvalResult,
|
||||
SkillExecContext,
|
||||
SkillExecOutcome,
|
||||
SkillModule,
|
||||
} from '../../types.ts'
|
||||
import { evaluateSkillCore113c, executeSkillCore113c } from '../../registry.ts'
|
||||
|
||||
export const skillModule: SkillModule = {
|
||||
skillId: 14,
|
||||
name: "Power Strike",
|
||||
charClass: "ama",
|
||||
srvStFunc: 6,
|
||||
srvDoFunc: 2,
|
||||
|
||||
evaluate(ctx: SkillEvalContext): SkillEvalResult {
|
||||
return evaluateSkillCore113c(ctx)
|
||||
},
|
||||
|
||||
executeDo(ctx: SkillExecContext): SkillExecOutcome {
|
||||
const outcome = executeSkillCore113c(ctx)
|
||||
return {
|
||||
...outcome,
|
||||
notes: [
|
||||
...outcome.notes,
|
||||
'skill_module:skill-014-power-strike',
|
||||
],
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
export default skillModule
|
||||
|
|
@ -0,0 +1,109 @@
|
|||
/**
|
||||
* 1.13c Numerical & Runtime Verification Suite — Skill #014: Power Strike (AMA)
|
||||
* Gitea Tracking Issue: #168
|
||||
*/
|
||||
import { describe, expect, it } from 'vitest'
|
||||
import { getSharedDataRegistry } from '../../../src/game/engine/data-registry.ts'
|
||||
import { UnitStatList } from '../../../src/game/engine/stat-list.ts'
|
||||
import { WorldArena } from '../../../src/game/engine/world-arena.ts'
|
||||
import { skillModule } from '../../../src/game/skills/impl/ama/skill-014-power-strike.ts'
|
||||
|
||||
describe('[Skill #014] Power Strike (AMA) — 1.13c Parity (Issue #168)', () => {
|
||||
it('evaluates exact 1.13c Skills.txt / Missiles.txt formulas at slvl 1, 10, and 20', async () => {
|
||||
const registry = await getSharedDataRegistry()
|
||||
const skillRec = registry.getSkillById(14)!
|
||||
expect(skillRec).toBeDefined()
|
||||
expect(skillModule.skillId).toBe(14)
|
||||
expect(skillModule.name).toBe("Power Strike")
|
||||
expect(skillModule.charClass).toBe("ama")
|
||||
|
||||
const stats1 = new UnitStatList()
|
||||
stats1.setBaseSkillLevel(14, 1)
|
||||
const r1 = skillModule.evaluate!({ registry, skill: skillRec, slvl: 1, blvl: 1, statList: stats1 })
|
||||
expect(r1.manaCost).toBe(2)
|
||||
expect(r1.manaCost256).toBe(512)
|
||||
expect(r1.minPhysDmg).toBe(0)
|
||||
expect(r1.maxPhysDmg).toBe(0)
|
||||
expect(r1.minElemDmg256).toBe(256)
|
||||
expect(r1.maxElemDmg256).toBe(4096)
|
||||
|
||||
const stats10 = new UnitStatList()
|
||||
stats10.setBaseSkillLevel(14, 10)
|
||||
const r10 = skillModule.evaluate!({ registry, skill: skillRec, slvl: 10, blvl: 10, statList: stats10 })
|
||||
expect(r10.manaCost).toBe(4)
|
||||
expect(r10.manaCost256).toBe(1088)
|
||||
expect(r10.minPhysDmg).toBe(0)
|
||||
expect(r10.maxPhysDmg).toBe(0)
|
||||
expect(r10.minElemDmg256).toBe(256)
|
||||
expect(r10.maxElemDmg256).toBe(54784)
|
||||
|
||||
const stats20 = new UnitStatList()
|
||||
stats20.setBaseSkillLevel(14, 20)
|
||||
const r20 = skillModule.evaluate!({ registry, skill: skillRec, slvl: 20, blvl: 20, statList: stats20 })
|
||||
expect(r20.manaCost).toBe(6)
|
||||
expect(r20.manaCost256).toBe(1728)
|
||||
expect(r20.minPhysDmg).toBe(0)
|
||||
expect(r20.maxPhysDmg).toBe(0)
|
||||
expect(r20.minElemDmg256).toBe(256)
|
||||
expect(r20.maxElemDmg256).toBe(165376)
|
||||
expect(r20.durationFrames).toBe(0)
|
||||
expect(r20.radiusSubtiles).toBe(0)
|
||||
expect(r20.petMax).toBe(0)
|
||||
expect(r20.cooldownFrames).toBe(0)
|
||||
})
|
||||
|
||||
it('enforces 1.13c blvl synergy rule (hard points boost synergy; +skills and item charges do NOT)', async () => {
|
||||
const registry = await getSharedDataRegistry()
|
||||
const skillRec = registry.getSkillById(14)!
|
||||
const synId = 34
|
||||
|
||||
const statsBase = new UnitStatList()
|
||||
statsBase.setBaseSkillLevel(14, 20)
|
||||
if (synId !== null) {
|
||||
statsBase.setBaseSkillLevel(synId, 20)
|
||||
}
|
||||
const withHardPoints = skillModule.evaluate!({
|
||||
registry,
|
||||
skill: skillRec,
|
||||
slvl: 20,
|
||||
blvl: 20,
|
||||
statList: statsBase,
|
||||
})
|
||||
expect(withHardPoints.synergyBonusPct).toBe(200)
|
||||
|
||||
// +20 allskills and +33 Marrowwalk charges without hard points must yield 0 synergy
|
||||
const statsSoftOnly = new UnitStatList()
|
||||
statsSoftOnly.setBaseSkillLevel(14, 20)
|
||||
statsSoftOnly.addStat('item_allskills', 20)
|
||||
if (synId !== null) {
|
||||
statsSoftOnly.setChargedSkillLevel(synId, 33)
|
||||
}
|
||||
const withSoftOnly = skillModule.evaluate!({
|
||||
registry,
|
||||
skill: skillRec,
|
||||
slvl: 20,
|
||||
blvl: 20,
|
||||
statList: statsSoftOnly,
|
||||
})
|
||||
expect(withSoftOnly.synergyBonusPct).toBe(0)
|
||||
})
|
||||
|
||||
it('executes runtime skill effect in WorldArena (castCount, action frame, and combat/state/missile/summon outcome)', async () => {
|
||||
const registry = await getSharedDataRegistry()
|
||||
const arena = new WorldArena({
|
||||
registry,
|
||||
classCode: "ama",
|
||||
skillId: 14,
|
||||
slvl: 20,
|
||||
})
|
||||
const outcome = arena.triggerCast()
|
||||
arena.stepTicks(15)
|
||||
const dbg = arena.getDebugState()
|
||||
|
||||
expect(dbg.ready).toBe(true)
|
||||
expect(dbg.skillId).toBe(14)
|
||||
expect(dbg.castCount).toBeGreaterThanOrEqual(1)
|
||||
expect(dbg.actionFrameTriggered).toBe(true)
|
||||
expect(outcome?.executed).toBe(true)
|
||||
})
|
||||
})
|
||||
Loading…
Reference in New Issue