RPG Event Generator v3.1.0 - v3.1.1
    Preparing search index...

    Interface SentenceStructure

    interface SentenceStructure {
        pattern:
            | "svo"
            | "sv"
            | "svc"
            | "svoo"
            | "passive"
            | "imperative"
            | "exclamatory";
        components: SentenceComponent;
        modifiers?: { adjectives?: string[]; adverbs?: string[] };
    }
    Index

    Properties

    pattern:
        | "svo"
        | "sv"
        | "svc"
        | "svoo"
        | "passive"
        | "imperative"
        | "exclamatory"
    components: SentenceComponent
    modifiers?: { adjectives?: string[]; adverbs?: string[] }