Add 8K SRAM IC and Comparator IC
This commit is contained in:
parent
608e2b83b8
commit
5625c4d2c4
@ -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 {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -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
|
||||
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "mesystem:items/8k_sram_blueprint"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "mesystem:items/8k_sram_chip"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "mesystem:items/8k_sram_ic"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "mesystem:items/comparator_blueprint"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "mesystem:items/comparator_chip"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "mesystem:items/comparator_ic"
|
||||
}
|
||||
}
|
20
src/main/resources/assets/mesystem/recipes/8k_sram_chip.json
Normal file
20
src/main/resources/assets/mesystem/recipes/8k_sram_chip.json
Normal 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"
|
||||
}
|
||||
}
|
17
src/main/resources/assets/mesystem/recipes/8k_sram_ic.json
Normal file
17
src/main/resources/assets/mesystem/recipes/8k_sram_ic.json
Normal 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"
|
||||
}
|
||||
}
|
@ -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"
|
||||
}
|
||||
}
|
@ -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 |
BIN
src/main/resources/assets/mesystem/textures/items/8k_sram_ic.png
Normal file
BIN
src/main/resources/assets/mesystem/textures/items/8k_sram_ic.png
Normal file
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 |
Loading…
x
Reference in New Issue
Block a user