Skip to content

Commit c02486a

Browse files
committed
Powered Overload Processor
1 parent 8c529a5 commit c02486a

4 files changed

Lines changed: 29 additions & 0 deletions

File tree

src/main/java/com/redcrafter07/ultrautilities/item/ModItems.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public class ModItems {
2020
public static final RegistryObject<Item> PROCESSOR_SWORD = ITEMS.register("processor_sword", () -> new ProcessorSwordItem(ModItemTier.PROCESSOR, 2, 3f, new Item.Properties().group(ModItemGroup.UU_TOOLS).maxStackSize(1)));
2121

2222
public static final RegistryObject<Item> OVERLOAD_PROCESSOR = ITEMS.register("overload_processor", () -> new Item(new Item.Properties().group(ModItemGroup.UU_GROUP)));
23+
public static final RegistryObject<Item> POWERED_OVERLOAD_PROCESSOR = ITEMS.register("powered_overload_processor", () -> new Item(new Item.Properties().group(ModItemGroup.UU_GROUP)));
2324
public static final RegistryObject<Item> OVERLOAD_INGOT = ITEMS.register("overload_ingot", () -> new Item(new Item.Properties().group(ModItemGroup.UU_GROUP)));
2425

2526
public static void register(IEventBus eventBus) {
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer0": "ultrautilities:item/powered_overload_processor"
5+
}
6+
}
673 Bytes
Loading
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"type": "crafting_shaped",
3+
"pattern": [
4+
"#X#",
5+
"XOX",
6+
"#X#"
7+
],
8+
"key": {
9+
"#": {
10+
"item": "minecraft:iron_block"
11+
},
12+
"X": {
13+
"item": "minecraft:redstone_block"
14+
},
15+
"O": {
16+
"item": "ultrautilities:overload_processor"
17+
}
18+
},
19+
"result": {
20+
"item": "ultrautilities:powered_overload_processor"
21+
}
22+
}

0 commit comments

Comments
 (0)