114 lines
3.1 KiB
Java
114 lines
3.1 KiB
Java
/*
|
|
* This file is part of TechReborn, licensed under the MIT License (MIT).
|
|
*
|
|
* Copyright (c) 2018 TechReborn
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
package techreborn.init;
|
|
|
|
import com.google.common.base.CaseFormat;
|
|
|
|
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.util.IStringSerializable;
|
|
import net.minecraft.util.ResourceLocation;
|
|
import net.minecraftforge.client.model.ModelLoader;
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
import reborncore.RebornRegistry;
|
|
import techreborn.lib.ModInfo;
|
|
import techreborn.items.ItemPlates;
|
|
|
|
|
|
/**
|
|
* @author drcrazy
|
|
*
|
|
*/
|
|
public enum ModPlates implements IStringSerializable {
|
|
ADVANCED_ALLOY,
|
|
ALUMINUM,
|
|
BRASS,
|
|
BRONZE,
|
|
CARBON,
|
|
COAL,
|
|
COPPER,
|
|
DIAMOND,
|
|
ELECTRUM,
|
|
EMERALD,
|
|
GOLD,
|
|
INVAR,
|
|
IRIDIUM_ALLOY,
|
|
IRIDIUM,
|
|
IRON,
|
|
LAPIS,
|
|
LAZURITE,
|
|
LEAD,
|
|
MAGNALIUM,
|
|
NICKEL,
|
|
OBSIDIAN,
|
|
PERIDOT,
|
|
PLATINUM,
|
|
RED_GARNET,
|
|
REDSTONE,
|
|
REFINED_IRON,
|
|
RUBY,
|
|
SAPPHIRE,
|
|
SILICON,
|
|
SILVER,
|
|
STEEL,
|
|
TIN,
|
|
TITANIUM,
|
|
TUNGSTEN,
|
|
TUNGSTENSTEEL,
|
|
WOOD,
|
|
YELLOW_GARNET,
|
|
ZINC;
|
|
|
|
public final String name;
|
|
public final Item item;
|
|
|
|
private ModPlates() {
|
|
name = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, "PLATE_" + this.toString());
|
|
item = new ItemPlates();
|
|
item.setRegistryName(new ResourceLocation(ModInfo.MOD_ID, name));
|
|
item.setTranslationKey(ModInfo.MOD_ID + "." + name);
|
|
}
|
|
|
|
public ItemStack getStack() {
|
|
return new ItemStack(item);
|
|
}
|
|
|
|
public void register() {
|
|
RebornRegistry.registerItem(item);
|
|
}
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public void registerModel() {
|
|
ResourceLocation blockstateJson = new ResourceLocation(ModInfo.MOD_ID, "items/materials/plates");
|
|
ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(blockstateJson, "type=" + name));
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
}
|