Exchanged advancements for dev items

This commit is contained in:
patience 2025-09-01 03:39:01 +01:00
parent 006ac3febf
commit 652d4afb1c
No known key found for this signature in database
9 changed files with 61 additions and 112 deletions

View file

@ -1,4 +1,8 @@
{ {
"block.mc_rebalance.acoustic_plush":"Acoustic Plush", "block.mc_rebalance.acoustic_plush":"Acoustic Plush",
"block.mc_rebalance.emerald_plush":"Emerald Plush" "block.mc_rebalance.emerald_plush":"Emerald Plush",
"advancements.end.thanks_sarge.title":"Proof of Thanks",
"advancements.end.thanks_sarge.description":"Earn a developer item for your hard work",
"advancements.nether.thanks_emerald.title":"Thank You and Farewell",
"advancements.nether.thanks_emerald.description":"Kill the Wither and earn a developer item"
} }

View file

@ -1,16 +0,0 @@
{
"display": {
"icon": {"item": "minecraft:netherite_block"},
"title": "Altered Metal",
"description": "The world is not as it was",
"background": "minecraft:textures/gui/advancements/backgrounds/stone.png",
"frame": "task",
"show_toast": false,
"announce_to_chat": false
},
"criteria": {
"givenow": {
"trigger": "minecraft:tick"
}
}
}

View file

@ -1,19 +0,0 @@
{
"parent":"mc_rebalance:the_farmer_was_replaced",
"display": {
"icon": {"item": "minecraft:gold_ingot"},
"title": "Better Than Another Rose Gold",
"description": "Hold on. Is this really gold?",
"frame": "task",
"show_toast": true,
"announce_to_chat": true
},
"criteria": {
"givenow": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items":[{"items":["minecraft:gold_ingot"]}]
}
}
}
}

View file

@ -1,19 +0,0 @@
{
"parent":"mc_rebalance:colliding_stars",
"display": {
"icon": {"item": "minecraft:netherite_scrap"},
"title": "Cause to Cause, Effect to Effect",
"description": "Find your first sheaf of dendrite",
"frame": "task",
"show_toast": true,
"announce_to_chat": true
},
"criteria": {
"givenow": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items":[{"items":["minecraft:netherite_scrap"]}]
}
}
}
}

View file

@ -1,19 +0,0 @@
{
"parent":"mc_rebalance:better_than_another_rose",
"display":{
"icon": {"item": "minecraft:diamond"},
"title": "Colliding Stars",
"description": "Tell me what their sky holds",
"frame": "task",
"show_toast": true,
"announce_to_chat": true
},
"criteria": {
"givenow": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items":[{"items":["minecraft:diamond"]}]
}
}
}
}

View file

@ -1,19 +0,0 @@
{
"parent":"mc_rebalance:altered_metal",
"display": {
"icon": {"item": "minecraft:stone_pickaxe"},
"title": "Really Is a Trial",
"description": "Craft your first real upgrade",
"frame": "task",
"show_toast": true,
"announce_to_chat": true
},
"criteria": {
"givenow": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items":[{"items":["minecraft:stone_pickaxe"]}]
}
}
}
}

View file

@ -0,0 +1,28 @@
{
"parent": "minecraft:nether/summon_wither",
"criteria": {
"killed_wither": {
"conditions": {
"entity": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {"type": "minecraft:wither"}
}
]
},
"trigger": "minecraft:player_killed_entity"
}
},
"display": {
"announce_to_chat": true,
"description": {"translate": "advancements.nether.thanks_emerald.description"},
"frame": "task",
"hidden": true,
"icon": {"item": "mc_rebalance:emerald_plush"},
"show_toast": true,
"title": {"translate": "advancements.nether.thanks_emerald.title"}
},
"requirements": [["killed_wither"]],
"rewards":{"loot":["mc_rebalance:blocks/emerald_plush"]}
}

View file

@ -0,0 +1,28 @@
{
"parent": "minecraft:end/kill_dragon",
"criteria": {
"killed_dragon": {
"conditions": {
"entity": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {"type": "minecraft:ender_dragon"}
}
]
},
"trigger": "minecraft:player_killed_entity"
}
},
"display": {
"announce_to_chat": true,
"description": {"translate": "advancements.end.thanks_sarge.description"},
"frame": "task",
"hidden": true,
"icon": {"item": "mc_rebalance:acoustic_plush"},
"show_toast": true,
"title": {"translate": "advancements.end.thanks_sarge.title"}
},
"requirements": [["killed_dragon"]],
"rewards":{"loot":["mc_rebalance:blocks/acoustic_plush"]}
}

View file

@ -1,19 +0,0 @@
{
"parent":"mc_rebalance:really_is_a_trial",
"display": {
"icon": {"item": "minecraft:iron_axe"},
"title": "The Farmer Was Replaced",
"description": "Hard to get anything nowadays",
"frame": "task",
"show_toast": true,
"announce_to_chat": true
},
"criteria": {
"givenow": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items":[{"items":["minecraft:iron_ingot"]}]
}
}
}
}