Add antenna and crude Green TV
This commit is contained in:
parent
4873b24911
commit
b37e62cc47
49 changed files with 596 additions and 39 deletions
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"parent": "minecraft:new_soviet/root",
|
||||
"criteria": {
|
||||
"got_antenna": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:antenna"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"display": {
|
||||
"announce_to_chat": true,
|
||||
"background": "minecraft:textures/gui/advancements/backgrounds/adventure.png",
|
||||
"description": {
|
||||
"translate": "advancement.new_soviet.antenna.desc"
|
||||
},
|
||||
"frame": "task",
|
||||
"hidden": false,
|
||||
"icon": {
|
||||
"item": "new_soviet:antenna"
|
||||
},
|
||||
"show_toast": true,
|
||||
"title": {
|
||||
"translate": "advancement.new_soviet.antenna.name"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"got_antenna"
|
||||
]
|
||||
],
|
||||
"sends_telemetry_event": true
|
||||
}
|
|
@ -1,6 +1,18 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_antenna": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:antenna"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_brown_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
|
@ -25,12 +37,24 @@
|
|||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_iron_nugget": {
|
||||
"has_iron_ingot": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_nugget"
|
||||
"minecraft:iron_ingot"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_iron_trapdoor": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_trapdoor"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -58,7 +82,9 @@
|
|||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_iron_nugget",
|
||||
"has_iron_ingot",
|
||||
"has_iron_trapdoor",
|
||||
"has_antenna",
|
||||
"has_glass_pane",
|
||||
"has_redstone",
|
||||
"has_brown_dye",
|
||||
|
|
|
@ -0,0 +1,100 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_antenna": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:antenna"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_glass_pane": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:glass_pane"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_green_dye": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:green_dye"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_iron_ingot": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_ingot"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_iron_trapdoor": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_trapdoor"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_redstone": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:redstone"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "new_soviet:green_tv"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_iron_ingot",
|
||||
"has_iron_trapdoor",
|
||||
"has_antenna",
|
||||
"has_glass_pane",
|
||||
"has_redstone",
|
||||
"has_green_dye",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"new_soviet:green_tv"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
|
@ -1,6 +1,18 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_antenna": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:antenna"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_glass_pane": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
|
@ -13,12 +25,24 @@
|
|||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_iron_nugget": {
|
||||
"has_iron_ingot": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_nugget"
|
||||
"minecraft:iron_ingot"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_iron_trapdoor": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_trapdoor"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -58,7 +82,9 @@
|
|||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_iron_nugget",
|
||||
"has_iron_ingot",
|
||||
"has_iron_trapdoor",
|
||||
"has_antenna",
|
||||
"has_glass_pane",
|
||||
"has_redstone",
|
||||
"has_red_dye",
|
||||
|
|
|
@ -1,6 +1,18 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_antenna": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"new_soviet:antenna"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_glass_pane": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
|
@ -13,12 +25,24 @@
|
|||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_iron_nugget": {
|
||||
"has_iron_ingot": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_nugget"
|
||||
"minecraft:iron_ingot"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_iron_trapdoor": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_trapdoor"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -58,7 +82,9 @@
|
|||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_iron_nugget",
|
||||
"has_iron_ingot",
|
||||
"has_iron_trapdoor",
|
||||
"has_antenna",
|
||||
"has_glass_pane",
|
||||
"has_redstone",
|
||||
"has_orange_dye",
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_iron_ingot": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_ingot"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_iron_nugget": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_nugget"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "new_soviet:antenna"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_iron_ingot",
|
||||
"has_iron_nugget",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"new_soviet:antenna"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
21
src/main/generated/data/new_soviet/recipes/antenna.json
Normal file
21
src/main/generated/data/new_soviet/recipes/antenna.json
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"I": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
},
|
||||
"N": {
|
||||
"item": "minecraft:iron_nugget"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"N N",
|
||||
"N N",
|
||||
" I "
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:antenna"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
|
@ -2,23 +2,29 @@
|
|||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "new_soviet:antenna"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:brown_dye"
|
||||
},
|
||||
"G": {
|
||||
"item": "minecraft:glass_pane"
|
||||
},
|
||||
"N": {
|
||||
"item": "minecraft:iron_nugget"
|
||||
"I": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
},
|
||||
"R": {
|
||||
"item": "minecraft:redstone"
|
||||
},
|
||||
"T": {
|
||||
"item": "minecraft:iron_trapdoor"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"N N",
|
||||
"DGD",
|
||||
"DRD"
|
||||
"TAT",
|
||||
"IGI",
|
||||
"RDR"
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:brown_tv"
|
||||
|
|
33
src/main/generated/data/new_soviet/recipes/green_tv.json
Normal file
33
src/main/generated/data/new_soviet/recipes/green_tv.json
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "new_soviet:antenna"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:green_dye"
|
||||
},
|
||||
"G": {
|
||||
"item": "minecraft:glass_pane"
|
||||
},
|
||||
"I": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
},
|
||||
"R": {
|
||||
"item": "minecraft:redstone"
|
||||
},
|
||||
"T": {
|
||||
"item": "minecraft:iron_trapdoor"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"TAT",
|
||||
"IGI",
|
||||
"RDR"
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:green_tv"
|
||||
},
|
||||
"show_notification": true
|
||||
}
|
|
@ -2,23 +2,29 @@
|
|||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "new_soviet:antenna"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:red_dye"
|
||||
},
|
||||
"G": {
|
||||
"item": "minecraft:glass_pane"
|
||||
},
|
||||
"N": {
|
||||
"item": "minecraft:iron_nugget"
|
||||
"I": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
},
|
||||
"R": {
|
||||
"item": "minecraft:redstone"
|
||||
},
|
||||
"T": {
|
||||
"item": "minecraft:iron_trapdoor"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"N N",
|
||||
"DGD",
|
||||
"DRD"
|
||||
"TAT",
|
||||
"IGI",
|
||||
"RDR"
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:red_tv"
|
||||
|
|
|
@ -2,23 +2,29 @@
|
|||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "new_soviet:antenna"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:orange_dye"
|
||||
},
|
||||
"G": {
|
||||
"item": "minecraft:glass_pane"
|
||||
},
|
||||
"N": {
|
||||
"item": "minecraft:iron_nugget"
|
||||
"I": {
|
||||
"item": "minecraft:iron_ingot"
|
||||
},
|
||||
"R": {
|
||||
"item": "minecraft:redstone"
|
||||
},
|
||||
"T": {
|
||||
"item": "minecraft:iron_trapdoor"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"N N",
|
||||
"DGD",
|
||||
"DRD"
|
||||
"TAT",
|
||||
"IGI",
|
||||
"RDR"
|
||||
],
|
||||
"result": {
|
||||
"item": "new_soviet:tv"
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"values": [
|
||||
"new_soviet:tv",
|
||||
"new_soviet:red_tv",
|
||||
"new_soviet:brown_tv"
|
||||
"new_soviet:brown_tv",
|
||||
"new_soviet:green_tv"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue