fix: 展柜更新真斗面板报错;更新真斗评分规则

This commit is contained in:
UCPr 2025-10-28 16:48:14 +08:00
parent 715b3f88f4
commit 7889186979
7 changed files with 79 additions and 46 deletions

View file

@ -519,5 +519,19 @@ const special = {
final: 2
};
}
},
1441: {
id: 1441,
name: '狛野真斗',
initial_after_format: (properties) => {
special[1371].initial_after_format(properties, {});
properties[20] = {
property_name: '闪能自动累积',
property_id: 20,
base: 0,
add: 0,
final: 0
};
}
}
};

View file

@ -603,5 +603,20 @@ const special: Record<number, {
final: 2
}
}
},
1441: {
id: 1441,
name: '狛野真斗',
initial_after_format: (properties) => {
// 贯穿力处理与仪玄相同
special[1371].initial_after_format!(properties, {} as any)
properties[20] = {
property_name: '闪能自动累积',
property_id: 20,
base: 0,
add: 0,
final: 0
}
}
}
}