Add blank PCB blueprint
This commit is contained in:
parent
986cd06c85
commit
b37c12b16c
@ -11,9 +11,9 @@ apply plugin: 'net.minecraftforge.gradle.forge'
|
|||||||
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
|
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
|
||||||
|
|
||||||
|
|
||||||
version = "1.0"
|
version = "1.0.0"
|
||||||
group = "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
group = "com.pjht.ssspcore" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||||
archivesBaseName = "modid"
|
archivesBaseName = "ssspcore"
|
||||||
|
|
||||||
sourceCompatibility = targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
|
sourceCompatibility = targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
|
||||||
compileJava {
|
compileJava {
|
||||||
|
@ -20,6 +20,7 @@ public class ModItems {
|
|||||||
registerItem("plastic");
|
registerItem("plastic");
|
||||||
registerItem("housing");
|
registerItem("housing");
|
||||||
registerItem("blank_pcb");
|
registerItem("blank_pcb");
|
||||||
|
registerItem("blank_pcb_blueprint");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void register(IForgeRegistry<Item> registry) {
|
public static void register(IForgeRegistry<Item> registry) {
|
||||||
|
@ -11,7 +11,7 @@ item.housing.name=Housing
|
|||||||
item.ic.name=IC
|
item.ic.name=IC
|
||||||
item.plastic.name=Plastic
|
item.plastic.name=Plastic
|
||||||
item.blank_pcb.name=Blank PCB
|
item.blank_pcb.name=Blank PCB
|
||||||
|
item.blank_pcb_blueprint.name=Blank PCB Blueprint
|
||||||
# Blocks
|
# Blocks
|
||||||
tile.ore_copper.name=Copper Ore
|
tile.ore_copper.name=Copper Ore
|
||||||
tile.pedestal.name=Pedestal
|
tile.pedestal.name=Pedestal
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"parent": "item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "ssspcore:items/blank_pcb_blueprint"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
{
|
||||||
|
"item": "minecraft:paper"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "minecraft:dye",
|
||||||
|
"data": 2
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"item": "ssspcore:blank_pcb_blueprint"
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 208 B |
Loading…
x
Reference in New Issue
Block a user