commit
9e98d4809f
@ -7,11 +7,13 @@ import net.minecraftforge.registries.IForgeRegistry;
|
||||
public class ModItems {
|
||||
public static ItemOre ingotCopper = new ItemOre("ingot_copper", "ingotCopper");
|
||||
public static ItemOre rawSilicon = new ItemOre("raw_silicon","itemSilicon");
|
||||
public static ItemBase siliconWafer = new ItemBase("silicon_wafer");
|
||||
public static ItemFuel coke = new ItemFuel("coke","itemCoke", 1000);
|
||||
public static void register(IForgeRegistry<Item> registry) {
|
||||
registry.registerAll(
|
||||
ingotCopper,
|
||||
rawSilicon,
|
||||
siliconWafer,
|
||||
coke
|
||||
);
|
||||
}
|
||||
@ -19,6 +21,7 @@ public class ModItems {
|
||||
public static void registerModels() {
|
||||
ingotCopper.registerItemModel();
|
||||
rawSilicon.registerItemModel();
|
||||
siliconWafer.registerItemModel();
|
||||
coke.registerItemModel();
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
# Items
|
||||
item.ingot_copper.name=Copper Ingot
|
||||
item.raw_silicon.name=Raw Silicon
|
||||
item.silicon_wafer.name=Silicon Wafer
|
||||
item.coke.name=Coke
|
||||
|
||||
# Blocks
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "ssspcore:items/silicon"
|
||||
"layer0": "ssspcore:items/raw_silicon"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "ssspcore:items/silicon_wafer"
|
||||
}
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:sand",
|
||||
"item": "ssspcore:coke"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "ssspcore:silicon",
|
||||
"count": 2
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "ssspcore:raw_silicon"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "ssspcore:silicon_wafer"
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 449 B After Width: | Height: | Size: 449 B |
Binary file not shown.
After Width: | Height: | Size: 553 B |
Loading…
x
Reference in New Issue
Block a user