11
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
2026-04-16 21:47:20 +08:00
parent 2456c10c63
commit 09d4c0c31b
79 changed files with 11873 additions and 2341 deletions

View File

@@ -192,6 +192,8 @@ export interface CustomWorldRoleSkill {
name: string;
summary: string;
style: string;
actionPromptText?: string;
actionPreviewConfig?: CharacterAnimationConfig;
}
export interface CustomWorldRoleInitialItem {
@@ -202,6 +204,13 @@ export interface CustomWorldRoleInitialItem {
rarity: ItemRarity;
description: string;
tags: string[];
iconSrc?: string;
}
export interface CustomWorldRoleRelation {
id: string;
targetRoleId: string;
summary: string;
}
export interface CustomWorldRoleProfile {
@@ -216,6 +225,7 @@ export interface CustomWorldRoleProfile {
combatStyle: string;
initialAffinity: number;
relationshipHooks: string[];
relations?: CustomWorldRoleRelation[];
tags: string[];
backstoryReveal: CharacterBackstoryRevealConfig;
skills: CustomWorldRoleSkill[];