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

    Interface TemplateCondition

    interface TemplateCondition {
        type:
            | "stat_requirement"
            | "item_requirement"
            | "relationship_requirement"
            | "quest_requirement"
            | "custom";
        operator: | "gte"
        | "lte"
        | "eq"
        | "neq"
        | "gt"
        | "lt"
        | "has"
        | "not_has"
        | "and"
        | "or";
        field: string;
        value: any;
        negate?: boolean;
    }
    Index

    Properties

    type:
        | "stat_requirement"
        | "item_requirement"
        | "relationship_requirement"
        | "quest_requirement"
        | "custom"
    operator:
        | "gte"
        | "lte"
        | "eq"
        | "neq"
        | "gt"
        | "lt"
        | "has"
        | "not_has"
        | "and"
        | "or"
    field: string
    value: any
    negate?: boolean