added thick end rod

This commit is contained in:
J-onasJones 2024-10-06 14:35:57 +02:00
parent 3962ff157f
commit 2c0c31a964
10 changed files with 141 additions and 1 deletions

View file

@ -0,0 +1,30 @@
{
"variants": {
"facing=down": {
"model": "nec:block/thick_end_rod",
"x": 180
},
"facing=east": {
"model": "nec:block/thick_end_rod",
"x": 90,
"y": 90
},
"facing=north": {
"model": "nec:block/thick_end_rod",
"x": 90
},
"facing=south": {
"model": "nec:block/thick_end_rod",
"x": 90,
"y": 180
},
"facing=up": {
"model": "nec:block/thick_end_rod"
},
"facing=west": {
"model": "nec:block/thick_end_rod",
"x": 90,
"y": 270
}
}
}

View file

@ -26,6 +26,7 @@
"block.nec.gun_block": "Schießblock",
"block.nec.java_block": "Javablock",
"block.nec.pocket_block": "Pocketblock",
"block.nec.thick_end_rod": "Dicker Endstab",
"item.nec.ak_47": "AK-47",
"item.nec.chainmail": "Kettenbrief",
"item.nec.dirt_sword": "Erdschwert",

View file

@ -26,6 +26,7 @@
"block.nec.gun_block": "Gun Block",
"block.nec.java_block": "Java Block",
"block.nec.pocket_block": "Pocket Block",
"block.nec.thick_end_rod": "Thick End Rod",
"item.nec.ak_47": "AK-47",
"item.nec.chainmail": "Chainmail",
"item.nec.dirt_sword": "Dirt Sword",

View file

@ -0,0 +1,41 @@
{
"parent": "block/block",
"textures": {
"0": "nec:block/thick_end_rod",
"particle": "nec:block/thick_end_rod"
},
"elements": [
{
"from": [4, 0, 4],
"to": [12, 1, 12],
"faces": {
"north": {"uv": [2, 6, 6, 7], "texture": "#0"},
"east": {"uv": [2, 6, 6, 7], "texture": "#0"},
"south": {"uv": [2, 6, 6, 7], "texture": "#0"},
"west": {"uv": [2, 6, 6, 7], "texture": "#0"},
"up": {"uv": [2, 2, 6, 6], "texture": "#0"},
"down": {"uv": [6, 8, 2, 7], "texture": "#0", "cullface": "down"}
}
},
{
"from": [5, 1, 5],
"to": [11, 16, 11],
"faces": {
"north": {"uv": [0, 0, 2, 15], "texture": "#0"},
"east": {"uv": [0, 0, 2, 15], "texture": "#0"},
"south": {"uv": [0, 0, 2, 15], "texture": "#0"},
"west": {"uv": [0, 0, 2, 15], "texture": "#0"},
"up": {"uv": [2, 0, 4, 2], "texture": "#0", "cullface": "up"}
}
}
],
"display": {
"thirdperson_righthand": {
"scale": [0.375, 0.375, 0.375]
},
"head": {
"rotation": [-60, 0, 0],
"translation": [0, 5, -9]
}
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "nec:block/thick_end_rod"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 B

View file

@ -0,0 +1,19 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "nec:thick_end_rod"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}