io.github.sefiraat.slimetinker.items.workstations.smeltery.DummySmelteryTrait Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SlimeTinker Show documentation
Show all versions of SlimeTinker Show documentation
Slimefun4 Addon SlimeTinker
The newest version!
package io.github.sefiraat.slimetinker.items.workstations.smeltery;
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 DummySmelteryTrait {
public static final SlimefunItemStack STACK = ThemeUtils.themedItemStack(
"DUMMY_TINKERS_SMELTERY_PROP",
Material.CHISELED_POLISHED_BLACKSTONE,
ThemeItemType.MACHINE,
"Tinker's Smeltery",
"When a matching part is made using this",
"metal, it will give the finished tool",
"this property."
);
public static final RecipeType TYPE = new RecipeType(Keys.WS_DUMMY_SMELTERY_A, STACK);
private DummySmelteryTrait() {
throw new IllegalStateException("Utility class");
}
}