You've already forked minecraft-assets
Create/Update assets for version 1.15.2
This commit is contained in:
@@ -322,6 +322,14 @@
|
||||
"item": "minecraft:sweet_berries"
|
||||
}
|
||||
}
|
||||
},
|
||||
"honey_bottle": {
|
||||
"trigger": "minecraft:consume_item",
|
||||
"conditions": {
|
||||
"item": {
|
||||
"item": "minecraft:honey_bottle"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
@@ -438,6 +446,9 @@
|
||||
],
|
||||
[
|
||||
"sweet_berries"
|
||||
],
|
||||
[
|
||||
"honey_bottle"
|
||||
]
|
||||
]
|
||||
}
|
||||
@@ -2,7 +2,8 @@
|
||||
"parent": "minecraft:husbandry/plant_seed",
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "minecraft:diamond_hoe"
|
||||
"item": "minecraft:diamond_hoe",
|
||||
"nbt": "{Damage:0}"
|
||||
},
|
||||
"title": {
|
||||
"translate": "advancements.husbandry.break_diamond_hoe.title"
|
||||
|
||||
@@ -130,6 +130,14 @@
|
||||
"type": "minecraft:fox"
|
||||
}
|
||||
}
|
||||
},
|
||||
"minecraft:bee": {
|
||||
"trigger": "minecraft:bred_animals",
|
||||
"conditions": {
|
||||
"parent": {
|
||||
"type": "minecraft:bee"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
@@ -174,6 +182,9 @@
|
||||
],
|
||||
[
|
||||
"minecraft:fox"
|
||||
],
|
||||
[
|
||||
"minecraft:bee"
|
||||
]
|
||||
]
|
||||
}
|
||||
@@ -2,7 +2,8 @@
|
||||
"parent": "minecraft:husbandry/root",
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "minecraft:fishing_rod"
|
||||
"item": "minecraft:fishing_rod",
|
||||
"nbt": "{Damage:0}"
|
||||
},
|
||||
"title": {
|
||||
"translate": "advancements.husbandry.fishy_business.title"
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"parent": "minecraft:husbandry/root",
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "minecraft:honey_bottle"
|
||||
},
|
||||
"title": {
|
||||
"translate": "advancements.husbandry.safely_harvest_honey.title"
|
||||
},
|
||||
"description": {
|
||||
"translate": "advancements.husbandry.safely_harvest_honey.description"
|
||||
},
|
||||
"frame": "task",
|
||||
"show_toast": true,
|
||||
"announce_to_chat": true,
|
||||
"hidden": false
|
||||
},
|
||||
"criteria": {
|
||||
"safely_harvest_honey": {
|
||||
"trigger": "minecraft:safely_harvest_honey",
|
||||
"conditions": {
|
||||
"block": {
|
||||
"tag": "minecraft:beehives"
|
||||
},
|
||||
"item": {
|
||||
"item": "minecraft:glass_bottle"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"safely_harvest_honey"
|
||||
]
|
||||
]
|
||||
}
|
||||
42
data/minecraft/advancements/husbandry/silk_touch_nest.json
Normal file
42
data/minecraft/advancements/husbandry/silk_touch_nest.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"parent": "minecraft:husbandry/root",
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "minecraft:bee_nest"
|
||||
},
|
||||
"title": {
|
||||
"translate": "advancements.husbandry.silk_touch_nest.title"
|
||||
},
|
||||
"description": {
|
||||
"translate": "advancements.husbandry.silk_touch_nest.description"
|
||||
},
|
||||
"frame": "task",
|
||||
"show_toast": true,
|
||||
"announce_to_chat": true,
|
||||
"hidden": false
|
||||
},
|
||||
"criteria": {
|
||||
"silk_touch_nest": {
|
||||
"trigger": "minecraft:bee_nest_destroyed",
|
||||
"conditions": {
|
||||
"block": "minecraft:bee_nest",
|
||||
"item": {
|
||||
"enchantments": [
|
||||
{
|
||||
"enchantment": "minecraft:silk_touch",
|
||||
"levels": {
|
||||
"min": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"num_bees_inside": 3
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"silk_touch_nest"
|
||||
]
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user