Interface IApplicableToConverter

Mod that applicable to the converter.

interface IApplicableToConverter {
    acronym: string;
    bitwise: ModBitwise;
    incompatibles: ModBitwise;
    isRanked: boolean;
    multiplier: number;
    name: string;
    type: ModType;
    applyToConverter(converter): void;
}

Hierarchy (view full)

  • IMod
    • IApplicableToConverter

Properties

acronym: string

The shortened name of this mod.

bitwise: ModBitwise

Bitwise number of this mod.

incompatibles: ModBitwise

Incompatible mods.

isRanked: boolean

Returns if this mod is ranked.

multiplier: number

The score multiplier of this mod.

name: string

The name of this mod.

type: ModType

The type of this mod.

Methods