Remove Utamacraft Item #52

Merged
BlakeRain merged 2 commits from BlakeRain/utamacraft:43-remove-utamacraft-item into main 2023-12-29 23:56:09 +00:00
5 changed files with 13 additions and 28 deletions
Showing only changes of commit c28a88a127 - Show all commits

View File

@ -11,7 +11,7 @@ public class ModCreativeModeTab {
public static final CreativeModeTab TAB = new CreativeModeTab("utamacraft_tab") {
@Override
public @NotNull ItemStack makeIcon() {
return new ItemStack(ModItems.LOGO.get());
return new ItemStack(ModItems.BULB.get());
}
};
}

View File

@ -8,25 +8,17 @@ import net.minecraftforge.registries.ForgeRegistries;
import net.minecraftforge.registries.RegistryObject;
public class ModItems {
public static final DeferredRegister<Item> ITEMS =
DeferredRegister.create(ForgeRegistries.ITEMS, Utamacraft.MOD_ID);
public static final DeferredRegister<Item> ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS,
Utamacraft.MOD_ID);
public static final RegistryObject<Item> LOGO =
ITEMS.register("utamacraft_logo", ModItems::simpleItem);
public static final RegistryObject<Item> PLAYER_PERIPHERAL =
ITEMS.register("player_peripheral", PlayerPeripheralItem::new);
public static final RegistryObject<Item> TUNGSTEN_INGOT =
ITEMS.register("tungsten_ingot", ModItems::simpleItem);
public static final RegistryObject<Item> TUNGSTEN_RAW =
ITEMS.register("tungsten_raw", ModItems::simpleItem);
public static final RegistryObject<Item> FIBER_GLASS =
ITEMS.register("fiber_glass", ModItems::simpleItem);
public static final RegistryObject<Item> PCB =
ITEMS.register("pcb", ModItems::simpleItem);
public static final RegistryObject<Item> BULB =
ITEMS.register("bulb", ModItems::simpleItem);
public static final RegistryObject<FireWardItem> FIRE_WARD =
ITEMS.register("fire_ward", FireWardItem::new);
public static final RegistryObject<Item> PLAYER_PERIPHERAL = ITEMS.register("player_peripheral",
PlayerPeripheralItem::new);
public static final RegistryObject<Item> TUNGSTEN_INGOT = ITEMS.register("tungsten_ingot", ModItems::simpleItem);
public static final RegistryObject<Item> TUNGSTEN_RAW = ITEMS.register("tungsten_raw", ModItems::simpleItem);
public static final RegistryObject<Item> FIBER_GLASS = ITEMS.register("fiber_glass", ModItems::simpleItem);
public static final RegistryObject<Item> PCB = ITEMS.register("pcb", ModItems::simpleItem);
public static final RegistryObject<Item> BULB = ITEMS.register("bulb", ModItems::simpleItem);
public static final RegistryObject<FireWardItem> FIRE_WARD = ITEMS.register("fire_ward", FireWardItem::new);
public static void register(IEventBus eventBus) {
ITEMS.register(eventBus);

View File

@ -13,9 +13,8 @@
"item.utamacraft.pcb": "Printed Circuit Board",
"item.utamacraft.player_peripheral": "Player peripheral",
"item.utamacraft.tungsten_raw": "Raw Tungsten",
"item.utamacraft.tungsten_block": "Tungsten Block",
"item.utamacraft.tungsten_block": "Tungsten Block",
"item.utamacraft.tungsten_ingot": "Tungsten Ingot",
"item.utamacraft.utamacraft_logo": "Utamacraft",
"itemGroup.utamacraft_tab": "Utamacraft",
"tooltip.utamacraft.energy": "Energy",
"tooltip.utamacraft.energy.amount": "%s FE",
@ -25,7 +24,7 @@
"tooltip.utamacraft.fire_ward": "Protects the player from fire damage",
"tooltip.utamacraft.fluid.empty": "Empty",
"tooltip.utamacraft.fluid.amount": "%s mB",
"tooltip.utamacraft.fluid.amount.with_capacity": "%s / %s mB",
"tooltip.utamacraft.fluid.amount.with_capacity": "%s / %s mB",
"turtle.utamacraft.player_turtle": "Player",
"gui.utamacraft.insolator.dump": "Dump",
"gui.utamacraft.insolator.dump.tooltip": "Dump the fluid contents of the Insolator",

View File

@ -1,6 +0,0 @@
{
"parent": "item/generated",
"textures": {
"layer0": "utamacraft:item/utamacraft_logo"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 KiB