Refine NPC interactions and runtime item generation

This commit is contained in:
2026-04-05 17:13:07 +08:00
parent c49c64896a
commit 89cecda7da
58 changed files with 4199 additions and 1562 deletions

View File

@@ -693,7 +693,9 @@ function describeProvidedOptionCore(option: StoryOption) {
}
if (option.interaction?.kind === 'npc' && option.interaction.action === 'gift') {
return '向面前角色送礼,以改善关系或表达诚意。';
return option.detailText
? `向面前角色送礼,以改善关系或表达诚意。当前礼物线索:${option.detailText}`
: '向面前角色送礼,以改善关系或表达诚意。';
}
if (option.interaction?.kind === 'npc' && option.interaction.action === 'recruit') {