coconut.png
This commit is contained in:
parent
14ba6df75b
commit
222fa946a3
17 changed files with 387 additions and 132 deletions
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"itemGroup.new_soviet.building_blocks": "Soviet Building Blocks",
|
||||
"itemGroup.new_soviet.items": "Soviet Items",
|
||||
"block.new_soviet.sand_tiles": "Sand Tiles",
|
||||
"block.new_soviet.cracked_sand_tiles": "Cracked Sand Tiles",
|
||||
"block.new_soviet.mossy_sand_tiles": "Mossy Sand Tiles",
|
||||
|
@ -79,12 +80,12 @@
|
|||
"block.new_soviet.lime_warning": "Lime Warning Stripes",
|
||||
"block.new_soviet.green_warning": "Green Warning Stripes",
|
||||
"block.new_soviet.cyan_warning": "Cyan Warning Stripes",
|
||||
"block.new_soviet.light_blue_warning": "Light Blue Warning",
|
||||
"block.new_soviet.light_blue_warning": "Light Blue Warning Stripes",
|
||||
"block.new_soviet.blue_warning": "Blue Warning Stripes",
|
||||
"block.new_soviet.purple_warning": "Purple Warning Stripes",
|
||||
"block.new_soviet.magenta_warning": "Magenta Warning Stripes",
|
||||
"block.new_soviet.metal_plating": "Metal Plating Block",
|
||||
"block.new_soviet.concrete_wall": "Concrete Wall",
|
||||
"block.new_soviet.concrete_wall": "PO-2 Wall",
|
||||
"block.new_soviet.herringbone_acacia_planks": "Herringbone Acacia Planks",
|
||||
"block.new_soviet.cross_acacia_planks": "Cross Acacia Planks",
|
||||
"block.new_soviet.herringbone_oak_planks": "Herringbone Oak Planks",
|
||||
|
@ -112,5 +113,7 @@
|
|||
"block.new_soviet.brown_linoleum": "Brown Linoleum",
|
||||
"block.new_soviet.cyan_linoleum": "Cyan Linoleum",
|
||||
"block.new_soviet.cross_orange_linoleum": "Cross Orange Linoleum",
|
||||
"block.new_soviet.cross_brown_linoleum": "Cross Brown Linoleum"
|
||||
"block.new_soviet.cross_brown_linoleum": "Cross Brown Linoleum",
|
||||
"item.new_soviet.sickle": "Sickle",
|
||||
"item.new_soviet.coconut": "Coconut"
|
||||
}
|
|
@ -1,6 +1,81 @@
|
|||
{
|
||||
"parent": "minecraft:block/wall_inventory",
|
||||
"credit": "Made by Feulim (karoter2)",
|
||||
"parent": "block/block",
|
||||
"ambientocclusion": false,
|
||||
"textures": {
|
||||
"wall": "new_soviet:block/industrial/concrete_wall"
|
||||
"0": "new_soviet:block/industrial/po_2_wall/po2",
|
||||
"1": "new_soviet:block/industrial/po_2_wall/po2_pillar",
|
||||
"2": "new_soviet:block/industrial/po_2_wall/po2_side",
|
||||
"particle": "new_soviet:block/industrial/po_2_wall/po2"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Center post",
|
||||
"from": [4, 0, 4],
|
||||
"to": [12, 16, 12],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 8, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 8, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 8, 16], "texture": "#1"},
|
||||
"up": {"uv": [8, 0, 16, 8], "texture": "#1"},
|
||||
"down": {"uv": [8, 8, 16, 16], "texture": "#1", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Full wall",
|
||||
"from": [5, 0.1, 0],
|
||||
"to": [11, 15.1, 8],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 1, 10, 16], "texture": "#2", "cullface": "north"},
|
||||
"east": {"uv": [0, 1, 8, 16], "texture": "#0"},
|
||||
"south": {"uv": [4, 1, 10, 16], "texture": "#2", "cullface": "south"},
|
||||
"west": {"uv": [0, 1, 8, 16], "texture": "#0"},
|
||||
"up": {"uv": [4, 0, 10, 8], "texture": "#0"},
|
||||
"down": {"uv": [5, 7, 11, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Full wall",
|
||||
"from": [5, 0.1, 8],
|
||||
"to": [11, 15.1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 1, 10, 16], "texture": "#2", "cullface": "north"},
|
||||
"east": {"uv": [8, 1, 16, 16], "texture": "#0"},
|
||||
"south": {"uv": [4, 1, 10, 16], "texture": "#2", "cullface": "south"},
|
||||
"west": {"uv": [8, 1, 16, 16], "texture": "#0"},
|
||||
"up": {"uv": [4, 0, 10, 8], "texture": "#0"},
|
||||
"down": {"uv": [5, 7, 11, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [0.98, 17.93, -7.15],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [3.15, 27.95, -12.71],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"translation": [0.75, 0, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"translation": [3.25, 0, 0],
|
||||
"scale": [0.4, 0.4, 0.41]
|
||||
},
|
||||
"ground": {
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, 135, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [0, 90, 0],
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,6 +1,22 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_post",
|
||||
"credit": "Made by Feulim (karoter2)",
|
||||
"textures": {
|
||||
"wall": "new_soviet:block/industrial/concrete_wall"
|
||||
}
|
||||
"1": "new_soviet:block/industrial/po_2_wall/po2_pillar",
|
||||
"particle": "new_soviet:block/industrial/po_2_wall/po2"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Center post",
|
||||
"from": [4, 0, 4],
|
||||
"to": [12, 16, 12],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 8, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 8, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 8, 16], "texture": "#1"},
|
||||
"up": {"uv": [8, 0, 16, 8], "texture": "#1", "cullface": "up"},
|
||||
"down": {"uv": [8, 8, 16, 16], "texture": "#1", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,6 +1,22 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_side",
|
||||
"credit": "Made by Feulim (karoter2)",
|
||||
"textures": {
|
||||
"wall": "new_soviet:block/industrial/concrete_wall"
|
||||
}
|
||||
"0": "new_soviet:block/industrial/po_2_wall/po2",
|
||||
"1": "new_soviet:block/industrial/po_2_wall/po2_side",
|
||||
"particle": "new_soviet:block/industrial/po_2_wall/po2"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "wall",
|
||||
"from": [5, 0, 0],
|
||||
"to": [11, 15, 8],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 1, 10, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [8, 1, 16, 16], "texture": "#0"},
|
||||
"west": {"uv": [0, 1, 8, 16], "texture": "#0"},
|
||||
"up": {"uv": [4, 7, 10, 15], "texture": "#0"},
|
||||
"down": {"uv": [5, 8, 11, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,6 +1,21 @@
|
|||
{
|
||||
"parent": "minecraft:block/template_wall_side_tall",
|
||||
"credit": "Made by Feulim (karoter2)",
|
||||
"textures": {
|
||||
"wall": "new_soviet:block/industrial/concrete_wall"
|
||||
}
|
||||
"0": "new_soviet:block/industrial/po_2_wall/po2",
|
||||
"1": "new_soviet:block/industrial/po_2_wall/po2_side",
|
||||
"particle": "new_soviet:block/industrial/po_2_wall/po2"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [5, 0, 0],
|
||||
"to": [11, 16, 8],
|
||||
"faces": {
|
||||
"north": {"uv": [10, 0, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [8, 0, 16, 16], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 8, 16], "texture": "#0"},
|
||||
"up": {"uv": [4, 7, 10, 15], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [5, 8, 11, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"credit": "Achieved with SORCE",
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "new_soviet:item/coconut"
|
||||
}
|
||||
}
|
69
src/main/resources/assets/new_soviet/models/item/sickle.json
Normal file
69
src/main/resources/assets/new_soviet/models/item/sickle.json
Normal file
|
@ -0,0 +1,69 @@
|
|||
{
|
||||
"credit": "Made by Feulim (karoter2)",
|
||||
"texture_size": [32, 32],
|
||||
"textures": {
|
||||
"0": "new_soviet:item/sickle",
|
||||
"particle": "new_soviet:item/sickle"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [7, 0, 7],
|
||||
"to": [9, 7, 9],
|
||||
"faces": {
|
||||
"north": {"uv": [6.5, 0, 7.5, 3.5], "texture": "#0"},
|
||||
"east": {"uv": [6.5, 3.5, 7.5, 7], "texture": "#0"},
|
||||
"south": {"uv": [6.5, 7, 7.5, 10.5], "texture": "#0"},
|
||||
"west": {"uv": [7.5, 0, 8.5, 3.5], "texture": "#0"},
|
||||
"up": {"uv": [8.5, 4.5, 7.5, 3.5], "texture": "#0"},
|
||||
"down": {"uv": [8.5, 4.5, 7.5, 5.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [8, 7, 1.5],
|
||||
"to": [8, 20, 14.5],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 0, 6.5], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 6.5, 6.5], "texture": "#0"},
|
||||
"south": {"uv": [0, 0, 0, 6.5], "texture": "#0"},
|
||||
"west": {"uv": [6.5, 0, 0, 6.5], "texture": "#0"},
|
||||
"up": {"uv": [0, 6.5, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 0, 6.5], "texture": "#0"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [0, 11, 0],
|
||||
"translation": [0, 2.25, 0]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [0, 7, 0],
|
||||
"translation": [0, 2, 0]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [-14, 11, -25],
|
||||
"translation": [1.25, 0, -3.5]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [-7, 5, -5],
|
||||
"translation": [0, 0, -2]
|
||||
},
|
||||
"ground": {
|
||||
"rotation": [0, 0, 90],
|
||||
"translation": [0, -2, 0],
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [85, 51, -90],
|
||||
"translation": [-2.25, -1.25, 0],
|
||||
"scale": [0.8, 0.8, 0.8]
|
||||
},
|
||||
"head": {
|
||||
"translation": [0, 12.75, 0]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [0, 90, 0],
|
||||
"translation": [0, -1.75, 0]
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Before Width: | Height: | Size: 403 B |
Binary file not shown.
After Width: | Height: | Size: 290 B |
Binary file not shown.
After Width: | Height: | Size: 472 B |
Binary file not shown.
After Width: | Height: | Size: 300 B |
BIN
src/main/resources/assets/new_soviet/textures/item/coconut.png
Normal file
BIN
src/main/resources/assets/new_soviet/textures/item/coconut.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 371 B |
BIN
src/main/resources/assets/new_soviet/textures/item/sickle.png
Normal file
BIN
src/main/resources/assets/new_soviet/textures/item/sickle.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 455 B |
Loading…
Add table
Add a link
Reference in a new issue