Add dirt road, made with rake

This commit is contained in:
Andrew-71 2023-10-17 09:43:18 +03:00
parent 3893470712
commit c78eba73b0
14 changed files with 156 additions and 2 deletions

View file

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "new_soviet:block/dirt_road"
}
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "new_soviet:block/floor/dirt_road"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "new_soviet:block/dirt_road"
}

View file

@ -0,0 +1,74 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_gold_ingot": {
"conditions": {
"items": [
{
"items": [
"minecraft:gold_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_gold_nugget": {
"conditions": {
"items": [
{
"items": [
"minecraft:gold_nugget"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_green_wool": {
"conditions": {
"items": [
{
"items": [
"minecraft:green_wool"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_light_bulb_item": {
"conditions": {
"items": [
{
"items": [
"new_soviet:light_bulb_item"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "new_soviet:golden_table_lamp"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_light_bulb_item",
"has_gold_nugget",
"has_gold_ingot",
"has_green_wool",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"new_soviet:golden_table_lamp"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:dirt"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,27 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"G": {
"item": "minecraft:gold_ingot"
},
"N": {
"item": "minecraft:gold_nugget"
},
"W": {
"item": "minecraft:green_wool"
},
"Z": {
"item": "new_soviet:light_bulb_item"
}
},
"pattern": [
"WZW",
" N ",
"GGG"
],
"result": {
"item": "new_soviet:golden_table_lamp"
},
"show_notification": true
}