This commit is contained in:
2026-01-06 09:34:15 +01:00
parent eb234ed4d4
commit f92fa58b70
15 changed files with 235 additions and 33 deletions

View File

@@ -0,0 +1,6 @@
{
"variants": {
"half=lower": { "model": "szar:block/cannabis_bottom" },
"half=upper": { "model": "szar:block/cannabis" }
}
}

View File

@@ -2,5 +2,10 @@
"block.szar.cigany": "Cigány Block",
"block.szar.fasz": "Fasz",
"item.szar.nwordpass": "N-Word Pass",
"entity.szar.nigger": "Nigger"
"entity.szar.nigger": "Nigger",
"item.szar.nigger_spawn_egg":"Nigger Spawn Egg",
"itemgroup.szar_group": "Szar",
"block.szar.cannabis": "Cannabis",
"item.szar.weed": "Weed",
"effect.szar.drog": "Drog"
}

View File

@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cross",
"textures": {
"cross": "szar:block/cannabis"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cross",
"textures": {
"cross": "szar:block/cannabis_bottom"
}
}

View File

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

View File

@@ -0,0 +1,3 @@
{
"parent": "minecraft:item/template_spawn_egg"
}

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 508 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 B

View File

@@ -0,0 +1,42 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "szar:cannabis"
}
],
"conditions": [
{
"condition": "minecraft:any_of",
"terms": [
{
"condition": "minecraft:match_tool",
"predicate": {
"items": ["minecraft:shears"]
}
},
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": { "min": 1 }
}
]
}
},
{
"condition": "minecraft:random_chance",
"chance": 0.5
}
]
}
]
}
]
}

View File

@@ -0,0 +1,9 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "szar:cannabis"
},
"result": "szar:weed",
"experience": 0.67,
"cookingtime": 100
}