UNPKG

borderlands2

Version:

Borderlands 2 weapon damage and DPS calculation library

18 lines (17 loc) 721 B
import { StatType } from "../value_object/stat_type"; import { Stat } from "../interface/stat"; export declare enum RedTextEnum { DeDa = "De Da.", LadyFist = "Love is a Lady Finger. True love is a Lady Fist.", Gar = "Gar! Gorarr! My dad's a scientist! GWARRRR!!!!", ByThePeople = "By the people. For the people.", GoodForStartingFires = "Good for starting fires.", PeleHumblyRequestsASacrifice = "Pele humbly requests a sacrifice, if it's not too much trouble", FearTheSwarm = "Fear the swarm!" } declare abstract class RedText { protected abstract stats: Stat[]; getStat(statType: StatType): number; } export declare function RedTextFactory(enumVal: RedTextEnum): RedText; export {};