Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion src/main/resources/assets/the-forgotten/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,16 @@
"block.the-forgotten.polished_palestone": "Polished Palestone",
"block.the-forgotten.palestone_bricks": "Palestone Bricks",
"block.the-forgotten.pale_dirt": "Pale Dirt",
"block.the-forgotten.forgotten_portal": "Forgotten Portal"
"block.the-forgotten.forgotten_portal": "Forgotten Portal",

"advancement.the-forgotten.root.title": "The Forgotten",
"advancement.the-forgotten.root.description": "Enter the dimension between dimensions",
"advancement.the-forgotten.return.title": "Return to Sender",
"advancement.the-forgotten.return.description": "Find your way back to the Overworld",
"advancement.the-forgotten.hellgate.title": "Hellgate",
"advancement.the-forgotten.hellgate.description": "Open a path to the Nether from The Forgotten",
"advancement.the-forgotten.end_of_the_line.title": "End of the Line",
"advancement.the-forgotten.end_of_the_line.description": "Open a path to the End from The Forgotten",
"advancement.the-forgotten.hub.title": "Interdimensional Hub",
"advancement.the-forgotten.hub.description": "Use The Forgotten to reach every other dimension"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"parent": "the-forgotten:root",
"display": {
"icon": {
"id": "minecraft:ender_eye"
},
"title": {
"translate": "advancement.the-forgotten.end_of_the_line.title"
},
"description": {
"translate": "advancement.the-forgotten.end_of_the_line.description"
},
"frame": "task",
"show_toast": true,
"announce_to_chat": true
},
"criteria": {
"entered_end": {
"trigger": "minecraft:changed_dimension",
"conditions": {
"from": "the-forgotten:the_forgotten",
"to": "minecraft:the_end"
}
}
}
}
26 changes: 26 additions & 0 deletions src/main/resources/data/the-forgotten/advancement/hellgate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"parent": "the-forgotten:root",
"display": {
"icon": {
"id": "minecraft:flint_and_steel"
},
"title": {
"translate": "advancement.the-forgotten.hellgate.title"
},
"description": {
"translate": "advancement.the-forgotten.hellgate.description"
},
"frame": "task",
"show_toast": true,
"announce_to_chat": true
},
"criteria": {
"entered_nether": {
"trigger": "minecraft:changed_dimension",
"conditions": {
"from": "the-forgotten:the_forgotten",
"to": "minecraft:the_nether"
}
}
}
}
45 changes: 45 additions & 0 deletions src/main/resources/data/the-forgotten/advancement/hub.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"parent": "the-forgotten:root",
"display": {
"icon": {
"id": "minecraft:recovery_compass"
},
"title": {
"translate": "advancement.the-forgotten.hub.title"
},
"description": {
"translate": "advancement.the-forgotten.hub.description"
},
"frame": "challenge",
"show_toast": true,
"announce_to_chat": true
},
"criteria": {
"to_overworld": {
"trigger": "minecraft:changed_dimension",
"conditions": {
"from": "the-forgotten:the_forgotten",
"to": "minecraft:overworld"
}
},
"to_nether": {
"trigger": "minecraft:changed_dimension",
"conditions": {
"from": "the-forgotten:the_forgotten",
"to": "minecraft:the_nether"
}
},
"to_end": {
"trigger": "minecraft:changed_dimension",
"conditions": {
"from": "the-forgotten:the_forgotten",
"to": "minecraft:the_end"
}
}
},
"requirements": [
["to_overworld"],
["to_nether"],
["to_end"]
]
}
26 changes: 26 additions & 0 deletions src/main/resources/data/the-forgotten/advancement/return.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"parent": "the-forgotten:root",
"display": {
"icon": {
"id": "minecraft:echo_shard"
},
"title": {
"translate": "advancement.the-forgotten.return.title"
},
"description": {
"translate": "advancement.the-forgotten.return.description"
},
"frame": "task",
"show_toast": true,
"announce_to_chat": true
},
"criteria": {
"returned_overworld": {
"trigger": "minecraft:changed_dimension",
"conditions": {
"from": "the-forgotten:the_forgotten",
"to": "minecraft:overworld"
}
}
}
}
25 changes: 25 additions & 0 deletions src/main/resources/data/the-forgotten/advancement/root.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"display": {
"icon": {
"id": "minecraft:echo_shard"
},
"title": {
"translate": "advancement.the-forgotten.root.title"
},
"description": {
"translate": "advancement.the-forgotten.root.description"
},
"background": "minecraft:textures/block/deepslate.png",
"frame": "task",
"show_toast": true,
"announce_to_chat": true
},
"criteria": {
"entered_forgotten": {
"trigger": "minecraft:changed_dimension",
"conditions": {
"to": "the-forgotten:the_forgotten"
}
}
}
}