Added several items

This commit is contained in:
pjht 2018-03-12 09:07:28 -05:00
parent 7eca11ae04
commit 986cd06c85
18 changed files with 115 additions and 1 deletions

View File

@ -15,6 +15,11 @@ public class ModItems {
registerOredict("ingot_copper", "ingotCopper");
registerOredict("raw_silicon","itemSilicon");
registerFuel("coke","itemCoke", 1000);
registerItem("blank_chip");
registerItem("blank_blueprint");
registerItem("plastic");
registerItem("housing");
registerItem("blank_pcb");
}
public static void register(IForgeRegistry<Item> registry) {

View File

@ -3,6 +3,14 @@ item.ingot_copper.name=Copper Ingot
item.raw_silicon.name=Raw Silicon
item.silicon_wafer.name=Silicon Wafer
item.coke.name=Coke
item.blank_blueprint.name=Blank Blueprint
item.blank_chip.name=Blank Chip
item.blueprint.name=Blueprint
item.chip.name=Chip
item.housing.name=Housing
item.ic.name=IC
item.plastic.name=Plastic
item.blank_pcb.name=Blank PCB
# Blocks
tile.ore_copper.name=Copper Ore

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "ssspcore:items/blank_blueprint"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "ssspcore:items/blank_chip"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "ssspcore:items/blank_pcb"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "ssspcore:items/blueprint"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "ssspcore:items/housing"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "ssspcore:items/plastic"
}
}

View File

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:paper"
},
{
"item": "minecraft:dye",
"data": 4
}
],
"result": {
"item": "ssspcore:blank_blueprint"
}
}

View File

@ -0,0 +1,12 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "ssspcore:silicon_wafer"
}
],
"result": {
"item": "ssspcore:blank_chip",
"count": 5
}
}

View File

@ -0,0 +1,11 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "ssspcore:ingot_copper"
}
],
"result": {
"item": "ssspcore:blank_pcb"
}
}

View File

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "ssspcore:plastic"
},
{
"item": "minecraft:dye",
"data": 0
}
],
"result": {
"item": "ssspcore:housing"
}
}

View File

@ -0,0 +1,12 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:wheat"
}
],
"result": {
"item": "ssspcore:plastic",
"count": 2
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 503 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 505 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 301 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 B