Added several items
This commit is contained in:
parent
7eca11ae04
commit
986cd06c85
@ -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) {
|
||||
|
@ -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
|
||||
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "ssspcore:items/blank_blueprint"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "ssspcore:items/blank_chip"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "ssspcore:items/blank_pcb"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "ssspcore:items/blueprint"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "ssspcore:items/housing"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "ssspcore:items/plastic"
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:paper"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:dye",
|
||||
"data": 4
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "ssspcore:blank_blueprint"
|
||||
}
|
||||
}
|
12
src/main/resources/assets/ssspcore/recipes/blank_chip.json
Normal file
12
src/main/resources/assets/ssspcore/recipes/blank_chip.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "ssspcore:silicon_wafer"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "ssspcore:blank_chip",
|
||||
"count": 5
|
||||
}
|
||||
}
|
11
src/main/resources/assets/ssspcore/recipes/blank_pcb.json
Normal file
11
src/main/resources/assets/ssspcore/recipes/blank_pcb.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "ssspcore:ingot_copper"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "ssspcore:blank_pcb"
|
||||
}
|
||||
}
|
15
src/main/resources/assets/ssspcore/recipes/housing.json
Normal file
15
src/main/resources/assets/ssspcore/recipes/housing.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "ssspcore:plastic"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:dye",
|
||||
"data": 0
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "ssspcore:housing"
|
||||
}
|
||||
}
|
12
src/main/resources/assets/ssspcore/recipes/plastic.json
Normal file
12
src/main/resources/assets/ssspcore/recipes/plastic.json
Normal 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 |
BIN
src/main/resources/assets/ssspcore/textures/items/blank_chip.png
Normal file
BIN
src/main/resources/assets/ssspcore/textures/items/blank_chip.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 503 B |
BIN
src/main/resources/assets/ssspcore/textures/items/blank_pcb.png
Normal file
BIN
src/main/resources/assets/ssspcore/textures/items/blank_pcb.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 505 B |
BIN
src/main/resources/assets/ssspcore/textures/items/housing.png
Normal file
BIN
src/main/resources/assets/ssspcore/textures/items/housing.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 301 B |
BIN
src/main/resources/assets/ssspcore/textures/items/plastic.png
Normal file
BIN
src/main/resources/assets/ssspcore/textures/items/plastic.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 290 B |
Loading…
x
Reference in New Issue
Block a user