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

    Interface RelationshipNetwork

    interface RelationshipNetwork {
        nodes: Map<
            string,
            { id: string; name: string; type: string; strength: number },
        >;
        edges: {
            from: string;
            to: string;
            strength: number;
            type: "neutral" | "ally" | "enemy" | "acquaintance";
        }[];
    }
    Index

    Properties

    Properties

    nodes: Map<string, { id: string; name: string; type: string; strength: number }>
    edges: {
        from: string;
        to: string;
        strength: number;
        type: "neutral" | "ally" | "enemy" | "acquaintance";
    }[]