13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
|
|
import { createPromptDef } from "@/core/game";
|
||
|
|
|
||
|
|
export const prompts = {
|
||
|
|
playCard: createPromptDef<[string, string?]>(
|
||
|
|
"play-card <cardId:string> [targetId:string]",
|
||
|
|
"选择卡牌并指定目标"
|
||
|
|
),
|
||
|
|
endTurn: createPromptDef<[]>(
|
||
|
|
"end-turn",
|
||
|
|
"结束回合"
|
||
|
|
),
|
||
|
|
};
|