35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import type { FunctionDocumentationEntry } from '../types';
|
|
import { NPC_CHAT_FUNCTION } from './npcChat';
|
|
import {
|
|
NPC_CHAT_QUEST_OFFER_ABANDON_FUNCTION,
|
|
NPC_CHAT_QUEST_OFFER_REPLACE_FUNCTION,
|
|
NPC_CHAT_QUEST_OFFER_VIEW_FUNCTION,
|
|
} from './npcChatQuestOffer';
|
|
import { NPC_FIGHT_FUNCTION } from './npcFight';
|
|
import { NPC_GIFT_FUNCTION } from './npcGift';
|
|
import { NPC_HELP_FUNCTION } from './npcHelp';
|
|
import { NPC_LEAVE_FUNCTION } from './npcLeave';
|
|
import { NPC_PREVIEW_TALK_FUNCTION } from './npcPreviewTalk';
|
|
import { NPC_QUEST_ACCEPT_FUNCTION } from './npcQuestAccept';
|
|
import { NPC_QUEST_TURN_IN_FUNCTION } from './npcQuestTurnIn';
|
|
import { NPC_RECRUIT_FUNCTION } from './npcRecruit';
|
|
import { NPC_SPAR_FUNCTION } from './npcSpar';
|
|
import { NPC_TRADE_FUNCTION } from './npcTrade';
|
|
|
|
export const NPC_FUNCTION_DOCUMENTATION: FunctionDocumentationEntry[] = [
|
|
NPC_PREVIEW_TALK_FUNCTION,
|
|
NPC_TRADE_FUNCTION,
|
|
NPC_FIGHT_FUNCTION,
|
|
NPC_SPAR_FUNCTION,
|
|
NPC_HELP_FUNCTION,
|
|
NPC_CHAT_FUNCTION,
|
|
NPC_CHAT_QUEST_OFFER_VIEW_FUNCTION,
|
|
NPC_CHAT_QUEST_OFFER_REPLACE_FUNCTION,
|
|
NPC_CHAT_QUEST_OFFER_ABANDON_FUNCTION,
|
|
NPC_GIFT_FUNCTION,
|
|
NPC_RECRUIT_FUNCTION,
|
|
NPC_QUEST_ACCEPT_FUNCTION,
|
|
NPC_QUEST_TURN_IN_FUNCTION,
|
|
NPC_LEAVE_FUNCTION,
|
|
];
|