feature: spirit allocation

This commit is contained in:
Vick Scarlet
2026-08-11 14:12:17 +08:00
parent 88536c7934
commit 5d50a4ea37
3 changed files with 18 additions and 6 deletions
+2 -2
View File
@@ -18,9 +18,9 @@ export interface HLProperties {
lowest: Properties // 历史最低属性
}
export type Allocation = Omit<Properties, 'age' | 'spirit'>
export type Allocation = Omit<Properties, 'age'>
export function createProperties(allocation: Allocation) {
return { ...allocation, age: -1, spirit: 0 }
return { ...allocation, age: -1 }
}
export function createHLProperties(allocation: Allocation) {