Industrial Sawmill
This commit is contained in:
parent
fff952cb1a
commit
1380724d10
6 changed files with 69 additions and 1 deletions
Binary file not shown.
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"forge_marker":1,
|
||||
"defaults":{
|
||||
"transform":"forge:default-block",
|
||||
"model":"orientable",
|
||||
"textures":{
|
||||
"particle":"techreborn:blocks/machine/advanced_machines/advanced_machine_west",
|
||||
"top":"techreborn:blocks/machine/advanced_machines/advanced_machine_top",
|
||||
"down":"techreborn:blocks/machine/advanced_machines/advanced_machine_bottom",
|
||||
"west":"techreborn:blocks/machine/advanced_machines/advanced_machine_west",
|
||||
"east":"techreborn:blocks/machine/advanced_machines/advanced_machine_east",
|
||||
"south":"techreborn:blocks/machine/advanced_machines/advanced_machine_back"
|
||||
}
|
||||
},
|
||||
"variants":{
|
||||
"inventory":{
|
||||
"transform":"forge:default-block",
|
||||
"textures":{
|
||||
"front":"techreborn:blocks/machine/advanced_machines/industrial_sawmill_front_off"
|
||||
}
|
||||
},
|
||||
"facing":{
|
||||
"north":{
|
||||
|
||||
},
|
||||
"east":{
|
||||
"y":90
|
||||
},
|
||||
"south":{
|
||||
"y":180
|
||||
},
|
||||
"west":{
|
||||
"y":270
|
||||
}
|
||||
},
|
||||
"active":{
|
||||
"true":{
|
||||
"textures":{
|
||||
"front":"techreborn:blocks/machine/advanced_machines/industrial_sawmill_front_on"
|
||||
}
|
||||
},
|
||||
"false":{
|
||||
"textures":{
|
||||
"front":"techreborn:blocks/machine/advanced_machines/industrial_sawmill_front_off"
|
||||
}
|
||||
}
|
||||
},
|
||||
"inventory": {
|
||||
"model": "orientable",
|
||||
"textures": {
|
||||
"particle":"techreborn:blocks/machine/advanced_machines/advanced_machine_west",
|
||||
"top":"techreborn:blocks/machine/advanced_machines/advanced_machine_top",
|
||||
"down":"techreborn:blocks/machine/advanced_machines/advanced_machine_bottom",
|
||||
"west":"techreborn:blocks/machine/advanced_machines/advanced_machine_west",
|
||||
"east":"techreborn:blocks/machine/advanced_machines/advanced_machine_east",
|
||||
"south":"techreborn:blocks/machine/advanced_machines/advanced_machine_back",
|
||||
"front": "techreborn:blocks/machine/advanced_machines/industrial_sawmill_front_off"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 864 B |
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"animation":{
|
||||
"frametime":2
|
||||
}
|
||||
}
|
|
@ -67,7 +67,9 @@ public class ItemParts extends ItemTextureBase
|
|||
{
|
||||
for (int meta = 0; meta < types.length; ++meta)
|
||||
{
|
||||
list.add(new ItemStack(item, 1, meta));
|
||||
if(!types[meta].equals(ModItems.META_PLACEHOLDER)){
|
||||
list.add(new ItemStack(item, 1, meta));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue