mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-16 07:24:32 +01:00
076783eb7e
- Added the Copper Backtank - Added Diving helmet and boots
64 lines
1.3 KiB
Java
64 lines
1.3 KiB
Java
package com.simibubi.create.content;
|
|
|
|
import com.simibubi.create.Create;
|
|
import com.simibubi.create.foundation.item.ItemDescription.Palette;
|
|
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.item.BlockItem;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public enum AllSections {
|
|
|
|
/** Create's kinetic mechanisms */
|
|
KINETICS(Palette.Red),
|
|
|
|
/** Item transport and other Utility */
|
|
LOGISTICS(Palette.Yellow),
|
|
|
|
/** Tools for strucuture movement and replication */
|
|
SCHEMATICS(Palette.Blue),
|
|
|
|
/** Decorative blocks */
|
|
PALETTES(Palette.Green),
|
|
|
|
/** Helpful gadgets and other shenanigans */
|
|
CURIOSITIES(Palette.Purple),
|
|
|
|
/** Base materials, ingredients and tools */
|
|
MATERIALS(Palette.Green),
|
|
|
|
/** Fallback section */
|
|
UNASSIGNED(Palette.Gray)
|
|
|
|
;
|
|
|
|
private Palette tooltipPalette;
|
|
|
|
private AllSections(Palette tooltipPalette) {
|
|
this.tooltipPalette = tooltipPalette;
|
|
}
|
|
|
|
public Palette getTooltipPalette() {
|
|
return tooltipPalette;
|
|
}
|
|
|
|
public static AllSections of(ItemStack stack) {
|
|
Item item = stack.getItem();
|
|
if (item instanceof BlockItem)
|
|
return ofBlock(((BlockItem) item).getBlock());
|
|
return ofItem(item);
|
|
}
|
|
|
|
static AllSections ofItem(Item item) {
|
|
return Create.registrate()
|
|
.getSection(item);
|
|
}
|
|
|
|
static AllSections ofBlock(Block block) {
|
|
return Create.registrate()
|
|
.getSection(block);
|
|
}
|
|
|
|
}
|