You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
636 B
TypeScript

import { BODY_BREASTS, BODY_CLOTHING, BODY_LEG_ORNAMENTS, BODY_SHOES } from "./body";
import { FACIAL_EXPRESSION, FACIAL_FEATURE } from "./facial";
import { ROLE, STYLE } from "./general";
import { HAIR_COLOR, HAIR_STYLE } from "./hair";
import { ORNAMENTS } from "./ornament";
/** 全局提示词清单 */
export const GLOBAL_PROMPTS = {
// 抽卡
role: ROLE,
facialFeature: FACIAL_FEATURE,
ornaments: ORNAMENTS,
// 天赋点
hairColor: HAIR_COLOR,
hairStyle: HAIR_STYLE,
facialExpression: FACIAL_EXPRESSION,
bodyBreasts: BODY_BREASTS,
bodyClothing: BODY_CLOTHING,
bodyShoes: BODY_SHOES,
}