Add blank PCB blueprint

This commit is contained in:
pjht 2018-03-12 19:11:04 -05:00
parent 986cd06c85
commit b37c12b16c
6 changed files with 26 additions and 4 deletions

View File

@ -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.
version = "1.0"
group = "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "modid"
version = "1.0.0"
group = "com.pjht.ssspcore" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "ssspcore"
sourceCompatibility = targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
compileJava {

View File

@ -20,6 +20,7 @@ public class ModItems {
registerItem("plastic");
registerItem("housing");
registerItem("blank_pcb");
registerItem("blank_pcb_blueprint");
}
public static void register(IForgeRegistry<Item> registry) {

View File

@ -11,7 +11,7 @@ item.housing.name=Housing
item.ic.name=IC
item.plastic.name=Plastic
item.blank_pcb.name=Blank PCB
item.blank_pcb_blueprint.name=Blank PCB Blueprint
# Blocks
tile.ore_copper.name=Copper Ore
tile.pedestal.name=Pedestal

View File

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

View File

@ -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