1
This commit is contained in:
@@ -94,7 +94,7 @@ export type NpcInteractionAction =
|
||||
| 'quest_turn_in';
|
||||
export type TreasureInteractionAction = 'secure' | 'inspect' | 'leave';
|
||||
export type NpcBattleMode = 'fight' | 'spar';
|
||||
export type NpcBattleOutcome = 'fight_victory' | 'spar_complete';
|
||||
export type NpcBattleOutcome = 'fight_victory' | 'fight_defeat' | 'spar_complete';
|
||||
export type CombatDelivery = 'melee' | 'ranged';
|
||||
export type CombatActionMode = 'idle' | CombatDelivery;
|
||||
export type SkillEffectPhase = 'cast' | 'travel' | 'impact';
|
||||
|
||||
@@ -138,7 +138,7 @@ export interface StoryNpcChatState {
|
||||
combatContext?: {
|
||||
summary: string;
|
||||
logLines: string[];
|
||||
battleOutcome: 'victory' | 'spar_complete';
|
||||
battleOutcome: 'victory' | 'defeat' | 'spar_complete';
|
||||
} | null;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user