Anvil now has inventory that rotates slots with direction and consumes the tongs item into inventory

This commit is contained in:
Mohammad-Ali Minaie
2017-03-05 02:58:08 -05:00
parent f00da70bf4
commit 240c1b9626
22 changed files with 649 additions and 48 deletions

View File

@@ -0,0 +1,26 @@
{
"forge_marker":1,
"defaults": {
"textures": {
"particle": "forgecraft:blocks/iron_ingot",
"texture": "forgecraft:blocks/iron_ingot"
},
"parent": "forgecraft:ironchunk"
},
"variants": {
"active=false": {
"model": "forgecraft:ironchunk",
"textures": {
"particle": "forgecraft:blocks/iron_ingot",
"texture": "forgecraft:blocks/iron_ingot"
}
},
"active=true": {
"model": "forgecraft:ironchunk",
"textures": {
"particle": "forgecraft:blocks/iron_ingot_hot",
"texture": "forgecraft:blocks/iron_ingot_hot"
}
}
}
}

View File

@@ -0,0 +1,18 @@
{
"forge_marker":1,
"defaults": {
"textures": {
"particle": "forgecraft:blocks/stone",
"texture": "forgecraft:blocks/stone",
"texture1": "forgecraft:blocks/anvil_base",
"texture2": "forgecraft:blocks/anvil_base_top"
},
"parent": "forgecraft:stoneanvil"
},
"variants": {
"facing=north": { "model": "forgecraft:stoneanvil" },
"facing=east": { "model": "forgecraft:stoneanvil", "y": 90 },
"facing=south": { "model": "forgecraft:stoneanvil", "y": 180 },
"facing=west": { "model": "forgecraft:stoneanvil", "y": 270 }
}
}