initial commit
This commit is contained in:
commit
6fb5ad5f94
23
data/global/advancement/name.json
Normal file
23
data/global/advancement/name.json
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"display": {
|
||||
"icon": {
|
||||
"id": "<item-or-block>"
|
||||
},
|
||||
"title": "<Data Pack Name>",
|
||||
"description": [
|
||||
"",
|
||||
{
|
||||
"text": "<description>",
|
||||
"color": "gold"
|
||||
}
|
||||
],
|
||||
"show_toast": false,
|
||||
"announce_to_chat": false
|
||||
},
|
||||
"parent": "global:root",
|
||||
"criteria": {
|
||||
"tick": {
|
||||
"trigger": "minecraft:tick"
|
||||
}
|
||||
}
|
||||
}
|
||||
34
data/global/advancement/root.json
Normal file
34
data/global/advancement/root.json
Normal file
@ -0,0 +1,34 @@
|
||||
{
|
||||
"display": {
|
||||
"icon": {
|
||||
"id": "minecraft:player_head",
|
||||
"components": {
|
||||
"minecraft:profile": {
|
||||
"properties": [
|
||||
{
|
||||
"name": "textures",
|
||||
"value": "<skin-here>"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"title": "<Put what you want>",
|
||||
"frame": "challenge",
|
||||
"description": [
|
||||
"",
|
||||
{
|
||||
"text": "Data Pack Loaded\n",
|
||||
"color": "gold"
|
||||
}
|
||||
],
|
||||
"background": "minecraft:textures/block/black_concrete.png",
|
||||
"show_toast": false,
|
||||
"announce_to_chat": false
|
||||
},
|
||||
"criteria": {
|
||||
"tick": {
|
||||
"trigger": "minecraft:tick"
|
||||
}
|
||||
}
|
||||
}
|
||||
5
data/minecraft/tags/function/load.json
Normal file
5
data/minecraft/tags/function/load.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"values": [
|
||||
"namespace:load"
|
||||
]
|
||||
}
|
||||
5
data/minecraft/tags/function/tick.json
Normal file
5
data/minecraft/tags/function/tick.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"values": [
|
||||
"namespace:tick"
|
||||
]
|
||||
}
|
||||
17
data/namespace/advancement/callthiswhatyouwant.json
Normal file
17
data/namespace/advancement/callthiswhatyouwant.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"display": {
|
||||
"title": "Data_Pack_Template",
|
||||
"description": "Data Pack Template",
|
||||
"icon": {
|
||||
"item": "minecraft:emerald"
|
||||
},
|
||||
"show_toast": false,
|
||||
"announce_to_chat": false
|
||||
},
|
||||
"parent": "global:namespace",
|
||||
"criteria": {
|
||||
"trigger": {
|
||||
"trigger": "minecraft:tick"
|
||||
}
|
||||
}
|
||||
}
|
||||
1
data/namespace/function/load.mcfunction
Normal file
1
data/namespace/function/load.mcfunction
Normal file
@ -0,0 +1 @@
|
||||
#This function will run on world loading or data pack loading
|
||||
1
data/namespace/function/tick.mcfunction
Normal file
1
data/namespace/function/tick.mcfunction
Normal file
@ -0,0 +1 @@
|
||||
#This function runs every tick
|
||||
6
pack.mcmeta
Normal file
6
pack.mcmeta
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 61,
|
||||
"description": "Data Pack Template"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user