This commit is contained in:
2025-12-17 09:34:24 +01:00
commit 65ef84f83e
107 changed files with 3733 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "szar:block/cigany"
}
}
}

View File

@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "szar:block/fasz"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 KiB

View File

@@ -0,0 +1,4 @@
{
"block.szar.cigany": "Cigány Block",
"block.szar.fasz": "Fasz"
}

View File

@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "szar:block/cigany"
}
}

View File

@@ -0,0 +1,57 @@
{
"format_version": "1.9.0",
"credit": "Made with Blockbench",
"texture_size": [32, 32],
"textures": {
"0": "szar:block/fasz",
"particle": "szar:block/white"
},
"elements": [
{
"from": [6, 0, 2],
"to": [10, 4, 6],
"rotation": {"angle": 0, "axis": "y", "origin": [6, 0, 2]},
"faces": {
"north": {"uv": [8, 0, 10, 2], "texture": "#0"},
"east": {"uv": [8, 2, 10, 4], "texture": "#0"},
"south": {"uv": [8, 4, 10, 6], "texture": "#0"},
"west": {"uv": [8, 6, 10, 8], "texture": "#0"},
"up": {"uv": [10, 10, 8, 8], "texture": "#0"},
"down": {"uv": [12, 0, 10, 2], "texture": "#0"}
}
},
{
"from": [6, 0, 10],
"to": [10, 4, 14],
"rotation": {"angle": 0, "axis": "y", "origin": [6, 0, 10]},
"faces": {
"north": {"uv": [10, 2, 12, 4], "texture": "#0"},
"east": {"uv": [10, 4, 12, 6], "texture": "#0"},
"south": {"uv": [10, 6, 12, 8], "texture": "#0"},
"west": {"uv": [8, 10, 10, 12], "texture": "#0"},
"up": {"uv": [12, 10, 10, 8], "texture": "#0"},
"down": {"uv": [12, 10, 10, 12], "texture": "#0"}
}
},
{
"from": [6, 4, 6],
"to": [10, 32, 10],
"rotation": {"angle": 0, "axis": "y", "origin": [6, 4, 6]},
"faces": {
"north": {"uv": [0, 0, 2, 14], "texture": "#0"},
"east": {"uv": [2, 0, 4, 14], "texture": "#0"},
"south": {"uv": [4, 0, 6, 14], "texture": "#0"},
"west": {"uv": [6, 0, 8, 14], "texture": "#0"},
"up": {"uv": [14, 2, 12, 0], "texture": "#0"},
"down": {"uv": [14, 2, 12, 4], "texture": "#0"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [79.94, -84.91, 76.47],
"translation": [-6.75, 6.75, 1.5],
"scale": [1, 1.43164, 1]
}
}
}

View File

@@ -0,0 +1,3 @@
{
"parent": "szar:block/cigany"
}

View File

@@ -0,0 +1,3 @@
{
"parent": "szar:block/fasz"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 B

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" M ",
" B ",
"B B"
],
"key": {
"M": {
"item": "minecraft:milk_bucket"
},
"B": {
"item": "minecraft:beef"
}
},
"result": {
"item": "szar:fasz",
"count": 1
}
}

View File

@@ -0,0 +1,35 @@
{
"schemaVersion": 1,
"id": "szar",
"version": "${version}",
"name": "szar",
"description": "Valami szar mod",
"authors": ["TGdoesCode"],
"contact": {},
"license": "All-Rights-Reserved",
"icon": "assets/szar/icon.png",
"environment": "*",
"entrypoints": {
"fabric-datagen": [
"dev.tggamesyt.szar.client.SzarDataGenerator"
],
"client": [
"dev.tggamesyt.szar.client.SzarClient"
],
"main": [
"dev.tggamesyt.szar.Szar"
]
},
"mixins": [
"szar.mixins.json",
{
"config": "szar.client.mixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=${loader_version}",
"fabric": "*",
"minecraft": "${minecraft_version}"
}
}

View File

@@ -0,0 +1,14 @@
{
"required": true,
"minVersion": "0.8",
"package": "dev.tggamesyt.szar.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"injectors": {
"defaultRequire": 1
},
"overwrites": {
"requireAnnotations": true
}
}