Models for some energy storages

This commit is contained in:
drcrazy 2019-04-24 17:36:09 +03:00
parent 86a2056903
commit 2afa32ad9e
18 changed files with 63 additions and 122 deletions

View file

@ -0,0 +1,10 @@
{
"variants": {
"facing=north": { "model": "techreborn:block/machines/energy/high_voltage_su" },
"facing=south": { "model": "techreborn:block/machines/energy/high_voltage_su", "y": 180 },
"facing=west": { "model": "techreborn:block/machines/energy/high_voltage_su", "y": 270 },
"facing=east": { "model": "techreborn:block/machines/energy/high_voltage_su", "y": 90 },
"facing=up": { "model": "techreborn:block/machines/energy/high_voltage_su", "x": 270 },
"facing=down": { "model": "techreborn:block/machines/energy/high_voltage_su", "x": 90 }
}
}

View file

@ -0,0 +1,10 @@
{
"variants": {
"facing=north": { "model": "techreborn:block/machines/energy/low_voltage_su" },
"facing=south": { "model": "techreborn:block/machines/energy/low_voltage_su", "y": 180 },
"facing=west": { "model": "techreborn:block/machines/energy/low_voltage_su", "y": 270 },
"facing=east": { "model": "techreborn:block/machines/energy/low_voltage_su", "y": 90 },
"facing=up": { "model": "techreborn:block/machines/energy/low_voltage_su", "x": 270 },
"facing=down": { "model": "techreborn:block/machines/energy/low_voltage_su", "x": 90 }
}
}

View file

@ -1,40 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machines/energy/hv_storage_side",
"bottom": "techreborn:blocks/machines/energy/hv_storage_side",
"top": "techreborn:blocks/machines/energy/hv_storage_side",
"front": "techreborn:blocks/machines/energy/hv_storage_front",
"side": "techreborn:blocks/machines/energy/hv_storage_side"
}
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
}
},
"facing": {
"north": {
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
},
"up": {
"x": 270
},
"down": {
"x": 90
}
}
}
}

View file

@ -1,42 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machines/energy/lv_storage_front",
"down": "techreborn:blocks/machines/energy/lv_storage_side",
"up": "techreborn:blocks/machines/energy/lv_storage_side",
"north": "techreborn:blocks/machines/energy/lv_storage_front",
"east": "techreborn:blocks/machines/energy/lv_storage_side",
"south": "techreborn:blocks/machines/energy/lv_storage_side",
"west": "techreborn:blocks/machines/energy/lv_storage_side"
}
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
}
},
"facing": {
"north": {
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
},
"up": {
"x": 270
},
"down": {
"x": 90
}
}
}
}

View file

@ -1,40 +0,0 @@
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machines/energy/mv_storage_side",
"bottom": "techreborn:blocks/machines/energy/mv_storage_side",
"top": "techreborn:blocks/machines/energy/mv_storage_side",
"front": "techreborn:blocks/machines/energy/mv_storage_front",
"side": "techreborn:blocks/machines/energy/mv_storage_side"
}
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"textures": {
}
},
"facing": {
"north": {
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
},
"up": {
"x": 270
},
"down": {
"x": 90
}
}
}
}

View file

@ -0,0 +1,10 @@
{
"variants": {
"facing=north": { "model": "techreborn:block/machines/energy/medium_voltage_su" },
"facing=south": { "model": "techreborn:block/machines/energy/medium_voltage_su", "y": 180 },
"facing=west": { "model": "techreborn:block/machines/energy/medium_voltage_su", "y": 270 },
"facing=east": { "model": "techreborn:block/machines/energy/medium_voltage_su", "y": 90 },
"facing=up": { "model": "techreborn:block/machines/energy/medium_voltage_su", "x": 270 },
"facing=down": { "model": "techreborn:block/machines/energy/medium_voltage_su", "x": 90 }
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/orientable",
"textures": {
"top": "techreborn:block/machines/energy/high_voltage_su_side",
"front": "techreborn:block/machines/energy/high_voltage_su_front",
"side": "techreborn:block/machines/energy/high_voltage_su_side"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/orientable",
"textures": {
"top": "techreborn:block/machines/energy/low_voltage_su_side",
"front": "techreborn:block/machines/energy/low_voltage_su_front",
"side": "techreborn:block/machines/energy/low_voltage_su_side"
}
}

View file

@ -0,0 +1,8 @@
{
"parent": "minecraft:block/orientable",
"textures": {
"top": "techreborn:block/machines/energy/medium_voltage_su_side",
"front": "techreborn:block/machines/energy/medium_voltage_su_front",
"side": "techreborn:block/machines/energy/medium_voltage_su_side"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "techreborn:block/machines/energy/high_voltage_su"
}

View file

@ -0,0 +1,3 @@
{
"parent": "techreborn:block/machines/energy/low_voltage_su"
}

View file

@ -0,0 +1,3 @@
{
"parent": "techreborn:block/machines/energy/medium_voltage_su"
}