feature: spirit allocation

This commit is contained in:
Vick Scarlet
2026-08-16 20:06:16 +08:00
committed by 神戸小鳥
parent dfdbfd69e7
commit 25bd9ce2b7
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) {