All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.sefiraat.slimetinker.items.workstations.armourtable.DummyArmourTable Maven / Gradle / Ivy

package io.github.sefiraat.slimetinker.items.workstations.armourtable;

import io.github.sefiraat.slimetinker.utils.Keys;
import io.github.sefiraat.slimetinker.utils.ThemeUtils;
import io.github.sefiraat.slimetinker.utils.enums.ThemeItemType;
import io.github.thebusybiscuit.slimefun4.api.items.SlimefunItemStack;
import io.github.thebusybiscuit.slimefun4.api.recipes.RecipeType;
import org.bukkit.Material;

public final class DummyArmourTable {

    public static final SlimefunItemStack STACK = ThemeUtils.themedItemStack(
        "DUMMY_TINKERS_ARMOUR_TABLE",
        Material.CHISELED_NETHER_BRICKS,
        ThemeItemType.MACHINE,
        "Tinker's Armour Table",
        "This item is made on a Tinker's Armour Table."
    );
    public static final RecipeType TYPE = new RecipeType(Keys.WS_DUMMY_ARMOUR_TABLE, STACK);

    private DummyArmourTable() {
        throw new IllegalStateException("Utility class");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy