Interface EquippableAbilityProps

Source
interface EquippableAbilityProps {
    abilityDef: string;
    reload?:
        | false
        | {
            ammoCountPerCharge: number;
            ammoDef: string;
            baseTicks: number;
            chargeNoun: string;
            maxAmmo: number;
            sound: string;
        };
}

Properties§

Source§

abilityDef: string

Source§

reload?:
    | false
    | {
        ammoCountPerCharge: number;
        ammoDef: string;
        baseTicks: number;
        chargeNoun: string;
        maxAmmo: number;
        sound: string;
    }