Interface FurnaceRecipe

Object representing furnace recipe.

interface FurnaceRecipe {
    inData: number;
    inId: number;
    resData: number;
    resId: number;
    clone(): any;
    equals(param0: any): boolean;
    finalize(): void;
    getClass(): Class<any>;
    getInputKey(): number;
    getPrefix(): string;
    getResult(): ItemInstance;
    hashCode(): number;
    isMatchingPrefix(prefix: string): boolean;
    isValid(): boolean;
    notify(): void;
    notifyAll(): void;
    setPrefix(prefix: string): void;
    toString(): string;
    wait(): void;
    wait(param0: number): void;
    wait(param0: number, param1: number): void;
}

Hierarchy

Methods

  • Returns string

    Recipe prefix.

    ""
    
  • Compares current recipe's prefix with given one.

    Parameters

    • prefix: string

      prefix value to compare with

    Returns boolean

    true, if current recipe's prefix is the same as given one, false otherwise.

  • Returns boolean

    true, if the recipe is valid, false otherwise.

  • Sets prefix value for the recipe.

    Parameters

    • prefix: string

      new prefix value

    Returns void

Properties

inData: number
inId: number
resData: number
resId: number

Copyright © 2024 Nernar. Copyright © 2020 #mineprogramming. Built with ❤ and TypeDoc.