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

    Interface Modifier

    interface Modifier {
        name: string;
        description: string;
        effects: {
            description?: (text: string) => string;
            choices?: (choices: Choice[]) => Choice[];
            visibility?: any;
            cold_modifier?: any;
            heat_modifier?: any;
            movement_penalty?: any;
            energy_bonus?: any;
        };
    }
    Index

    Properties

    name: string
    description: string
    effects: {
        description?: (text: string) => string;
        choices?: (choices: Choice[]) => Choice[];
        visibility?: any;
        cold_modifier?: any;
        heat_modifier?: any;
        movement_penalty?: any;
        energy_bonus?: any;
    }