Add 8K SRAM IC and Comparator IC

This commit is contained in:
pjht 2018-04-28 18:07:46 -05:00
parent 608e2b83b8
commit 5625c4d2c4
18 changed files with 125 additions and 6 deletions

View File

@ -17,6 +17,13 @@ public class ModItems {
registerItem("8080_pcb");
registerItemBlueprint("8080_blueprint");
registerItemBlueprint("8080_pcb_blueprint");
registerItem("8k_sram_ic");
registerItem("8k_sram_chip");
registerItemBlueprint("8k_sram_blueprint");
registerItem("comparator_chip");
registerItem("comparator_ic");
registerItemBlueprint("comparator_blueprint");
//NEXT ITEM HERE
}
public static void register(IForgeRegistry<Item> registry) {
@ -54,4 +61,4 @@ public class ModItems {
}
}
}
}
}

View File

@ -1,11 +1,13 @@
# Items
item.8080_chip.name=8080 Chip
item.8080_ic.name=8080 IC
item.8080_blueprint.name=8080 Chip Blueprint
item.8080_pcb_blank.name=Blank 8080 PCB
item.8080_pcb.name=8080 PCB
item.8080_pcb_blueprint.name=8080 PCB Blueprint
# Blocks
# Creative Tabs
itemGroup.mesystem=ME System
itemGroup.mesystem=ME System
item.8k_sram_ic.name=8K SRAM
item.8k_sram_chip.name=8K SRAM Chip
item.8k_sram_blueprint.name=8K SRAM Chip Blueprint
item.comparator_chip.name=Comparator Chip
item.comparator_ic.name=Comparator
item.comparator_blueprint.name=Comparator Chip Blueprint

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "mesystem:items/8k_sram_blueprint"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "mesystem:items/8k_sram_chip"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "mesystem:items/8k_sram_ic"
}
}

View File

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

View File

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

View File

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

View File

@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "ssspcore:blank_chip"
},
{
"item": "mesystem:8k_sram_blueprint"
},
{
"item": "ssspcore:phosphoric_acid"
},
{
"item": "ssspcore:boric_acid"
}
],
"result": {
"item": "mesystem:8k_sram_chip"
}
}

View File

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "ssspcore:housing"
},
{
"item": "mesystem:8k_sram_chip"
},
{
"item": "minecraft:gold_nugget"
}
],
"result": {
"item": "mesystem:8k_sram_ic"
}
}

View File

@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "ssspcore:blank_chip"
},
{
"item": "mesystem:comparator_blueprint"
},
{
"item": "ssspcore:phosphoric_acid"
},
{
"item": "ssspcore:boric_acid"
}
],
"result": {
"item": "mesystem:comparator_chip"
}
}

View File

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "ssspcore:housing"
},
{
"item": "mesystem:comparator_chip"
},
{
"item": "minecraft:gold_nugget"
}
],
"result": {
"item": "mesystem:comparator_ic"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 537 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 403 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 537 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 403 B