Black Trigram (흑괘) - Korean Martial Arts Combat Simulator API - v0.5.30
    Preparing search index...

    Interface PlayerCreationData

    Data required to create a new player.

    Korean: 플레이어 생성 데이터

    Used when initializing a new combatant with customizations.

    const creationData: PlayerCreationData = {
    name: { korean: "김무사", english: "Kim Warrior" },
    archetype: PlayerArchetype.MUSA,
    preferredStance: TrigramStance.GEON,
    customizations: {
    colors: { primary: 0x00FFFF, secondary: 0xFFAA00 },
    techniques: ["geon-thunder-strike"]
    }
    };

    플레이어생성

    interface PlayerCreationData {
        archetype: PlayerArchetype;
        customizations?: {
            colors?: { primary: number; secondary: number };
            techniques?: string[];
        };
        name: KoreanText;
        preferredStance?: TrigramStance;
    }
    Index

    Properties

    archetype: PlayerArchetype

    Combat archetype selection

    customizations?: {
        colors?: { primary: number; secondary: number };
        techniques?: string[];
    }

    Optional visual and technique customizations

    Type Declaration

    • Optional Readonlycolors?: { primary: number; secondary: number }

      Primary and secondary color scheme

    • Optional Readonlytechniques?: string[]

      List of unlocked technique IDs

    Bilingual player name

    preferredStance?: TrigramStance

    Optional starting stance preference