extended police and items

This commit is contained in:
2026-01-29 10:32:29 +01:00
parent b7c5f9cb31
commit 1cf3b06f59
22 changed files with 302 additions and 56 deletions

View File

@@ -29,5 +29,8 @@
"item.szar.terrorist_spawn_egg": "Islam Terrorist Spawn Egg",
"entity.szar.police": "Police Man",
"item.szar.police_spawn_egg": "Police Man Spawn Egg",
"effect.szar.arrested": "Arrested"
"effect.szar.arrested": "Arrested",
"item.szar.police_key": "Police Key",
"item.szar.police_handcuff": "Police Handcuff",
"entity.szar.gypsy": "Cigány"
}

View File

@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "szar:item/police_handcuff"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "szar:item/police_key"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 805 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 565 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 525 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 267 B

After

Width:  |  Height:  |  Size: 805 B

View File

@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"BBB",
"NNB"
],
"key": {
"B": {
"item": "minecraft:iron_ingot"
},
"N": {
"item": "minecraft:iron_nugget"
}
},
"result": {
"item": "szar:police_key",
"count": 1
}
}

View File

@@ -4,6 +4,7 @@
"package": "dev.tggamesyt.szar.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
"PlayerEntityMixin"
],
"injectors": {
"defaultRequire": 1