/** @noSelfInFile */ declare module '@asledgehammer/pipewrench' { export namespace zombie.characters.professions { /** * @customConstructor ProfessionFactory.new * @ * [CLASS] zombie.characters.professions.ProfessionFactory */ export class ProfessionFactory { /** java.util.LinkedHashMap */ static ProfessionMap?: java.util.LinkedHashMap; /** * Constructors: * - (Empty Constructor) */ constructor(); /** * @noSelf * * Method Parameters: * - (Empty): void */ static Reset(): void; /** * @noSelf * * Method Parameters: * - (String arg0, String arg1, String arg2, int arg3): zombie.characters.professions.ProfessionFactory$Profession */ static addProfession(arg0: string, arg1: string, arg2: string, arg3: number): zombie.characters.professions.ProfessionFactory$Profession; /** * @noSelf * * Method Parameters: * - (String arg0): zombie.characters.professions.ProfessionFactory$Profession */ static getProfession(arg0: string): zombie.characters.professions.ProfessionFactory$Profession; /** * @noSelf * * Method Parameters: * - (Empty): java.util.ArrayList */ static getProfessions(): java.util.ArrayList; /** * @noSelf * * Method Parameters: * - (Empty): void */ static init(): void; } /** * @customConstructor Profession.new * @ * [CLASS] zombie.characters.professions.ProfessionFactory$Profession */ export class ProfessionFactory$Profession { /** * Constructors: * - (String arg0, String arg1, String arg2, int arg3, String arg4) */ constructor(arg0: string, arg1: string, arg2: string, arg3: number, arg4: string); /** * Method Parameters: * - (String arg0): void */ addFreeTrait(arg0: string): void; /** * Method Parameters: * - (Perk arg0, int arg1): void */ addXPBoost(arg0: zombie.characters.skills.PerkFactory$Perk, arg1: number): void; /** * Method Parameters: * - (Empty): number */ getCost(): number; /** * Method Parameters: * - (Empty): string */ getDescription(): string; /** * Method Parameters: * - (Empty): java.util.List */ getFreeRecipes(): java.util.List; /** * Method Parameters: * - (Empty): java.util.Stack */ getFreeTraitStack(): java.util.Stack; /** * Method Parameters: * - (Empty): java.util.ArrayList */ getFreeTraits(): java.util.ArrayList; /** * Method Parameters: * - (Empty): string */ getIconPath(): string; /** * Method Parameters: * - (Empty): string */ getLabel(): string; /** * Method Parameters: * - (Empty): string */ getLeftLabel(): string; /** * Method Parameters: * - (Empty): string */ getName(): string; /** * Method Parameters: * - (Empty): string */ getRightLabel(): string; /** * Method Parameters: * - (Empty): zombie.core.textures.Texture */ getTexture(): zombie.core.textures.Texture; /** * Method Parameters: * - (Empty): string */ getType(): string; /** * Method Parameters: * - (Empty): java.util.HashMap */ getXPBoostMap(): java.util.HashMap; /** * Method Parameters: * - (int arg0): void */ setCost(arg0: number): void; /** * Method Parameters: * - (String arg0): void */ setDescription(arg0: string): void; /** * Method Parameters: * - (List arg0): void */ setFreeRecipes(arg0: java.util.List): void; /** * Method Parameters: * - (Stack arg0): void */ setFreeTraitStack(arg0: java.util.Stack): void; /** * Method Parameters: * - (String arg0): void */ setIconPath(arg0: string): void; /** * Method Parameters: * - (String arg0): void */ setName(arg0: string): void; /** * Method Parameters: * - (String arg0): void */ setType(arg0: string): void; } } }