More JSONs for rubber stuff

This commit is contained in:
drcrazy 2019-08-21 01:26:17 +03:00
parent f38b87996a
commit 1b500e6e65
14 changed files with 251 additions and 65 deletions

View file

@ -0,0 +1,20 @@
{
"variants": {
"facing=north,half=bottom,open=false": { "model": "techreborn:block/rubber/rubber_trapdoor_bottom" },
"facing=south,half=bottom,open=false": { "model": "techreborn:block/rubber/rubber_trapdoor_bottom", "y": 180 },
"facing=east,half=bottom,open=false": { "model": "techreborn:block/rubber/rubber_trapdoor_bottom", "y": 90 },
"facing=west,half=bottom,open=false": { "model": "techreborn:block/rubber/rubber_trapdoor_bottom", "y": 270 },
"facing=north,half=top,open=false": { "model": "techreborn:block/rubber/rubber_trapdoor_top" },
"facing=south,half=top,open=false": { "model": "techreborn:block/rubber/rubber_trapdoor_top", "y": 180 },
"facing=east,half=top,open=false": { "model": "techreborn:block/rubber/rubber_trapdoor_top", "y": 90 },
"facing=west,half=top,open=false": { "model": "techreborn:block/rubber/rubber_trapdoor_top", "y": 270 },
"facing=north,half=bottom,open=true": { "model": "techreborn:block/rubber/rubber_trapdoor_open" },
"facing=south,half=bottom,open=true": { "model": "techreborn:block/rubber/rubber_trapdoor_open", "y": 180 },
"facing=east,half=bottom,open=true": { "model": "techreborn:block/rubber/rubber_trapdoor_open", "y": 90 },
"facing=west,half=bottom,open=true": { "model": "techreborn:block/rubber/rubber_trapdoor_open", "y": 270 },
"facing=north,half=top,open=true": { "model": "techreborn:block/rubber/rubber_trapdoor_open", "x": 180, "y": 180 },
"facing=south,half=top,open=true": { "model": "techreborn:block/rubber/rubber_trapdoor_open", "x": 180, "y": 0 },
"facing=east,half=top,open=true": { "model": "techreborn:block/rubber/rubber_trapdoor_open", "x": 180, "y": 270 },
"facing=west,half=top,open=true": { "model": "techreborn:block/rubber/rubber_trapdoor_open", "x": 180, "y": 90 }
}
}

View file

@ -90,6 +90,7 @@
"block.techreborn.rubber_sapling": "Rubber Sapling",
"block.techreborn.rubber_fence": "Rubber Fence",
"block.techreborn.rubber_fence_gate": "Rubber Fence Gate",
"block.techreborn.rubber_trapdoor": "Rubber Trapdoor",
"block.techreborn.refined_iron_fence": "Iron Fence",
"block.techreborn.reinforced_glass": "Reinforced Glass",

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/template_orientable_trapdoor_bottom",
"textures": {
"texture": "techreborn:block/rubber_planks"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/template_orientable_trapdoor_open",
"textures": {
"texture": "techreborn:block/rubber_planks"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/template_orientable_trapdoor_top",
"textures": {
"texture": "techreborn:block/rubber_planks"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "techreborn:block/rubber/rubber_trapdoor_bottom"
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"techreborn:rubber_trapdoor"
]
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"techreborn:rubber_trapdoor"
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"group": "wooden_fence",
"pattern": [
"W#W",
"W#W"
],
"key": {
"#": {
"item": "minecraft:stick"
},
"W": {
"item": "techreborn:rubber_planks"
}
},
"result": {
"item": "techreborn:rubber_fence",
"count": 3
}
}

View file

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"group": "wooden_fence_gate",
"pattern": [
"#W#",
"#W#"
],
"key": {
"#": {
"item": "minecraft:stick"
},
"W": {
"item": "techreborn:rubber_planks"
}
},
"result": {
"item": "techreborn:rubber_fence_gate"
}
}

View file

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"group": "wooden_trapdoor",
"pattern": [
"###",
"###"
],
"key": {
"#": {
"item": "techreborn:rubber_planks"
}
},
"result": {
"item": "techreborn:rubber_trapdoor",
"count": 2
}
}