commit 6fb5ad5f943e226b65f99870ea72914b19555927 Author: eric.rumsey Date: Sat Feb 15 18:39:22 2025 -0600 initial commit diff --git a/data/global/advancement/name.json b/data/global/advancement/name.json new file mode 100644 index 0000000..cb0ef28 --- /dev/null +++ b/data/global/advancement/name.json @@ -0,0 +1,23 @@ +{ + "display": { + "icon": { + "id": "" + }, + "title": "", + "description": [ + "", + { + "text": "", + "color": "gold" + } + ], + "show_toast": false, + "announce_to_chat": false + }, + "parent": "global:root", + "criteria": { + "tick": { + "trigger": "minecraft:tick" + } + } +} \ No newline at end of file diff --git a/data/global/advancement/root.json b/data/global/advancement/root.json new file mode 100644 index 0000000..7c1d10b --- /dev/null +++ b/data/global/advancement/root.json @@ -0,0 +1,34 @@ +{ + "display": { + "icon": { + "id": "minecraft:player_head", + "components": { + "minecraft:profile": { + "properties": [ + { + "name": "textures", + "value": "" + } + ] + } + } + }, + "title": "", + "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" + } + } +} \ No newline at end of file diff --git a/data/minecraft/tags/function/load.json b/data/minecraft/tags/function/load.json new file mode 100644 index 0000000..1f67a31 --- /dev/null +++ b/data/minecraft/tags/function/load.json @@ -0,0 +1,5 @@ +{ + "values": [ + "namespace:load" + ] +} diff --git a/data/minecraft/tags/function/tick.json b/data/minecraft/tags/function/tick.json new file mode 100644 index 0000000..b7ddfc7 --- /dev/null +++ b/data/minecraft/tags/function/tick.json @@ -0,0 +1,5 @@ +{ + "values": [ + "namespace:tick" + ] +} diff --git a/data/namespace/advancement/callthiswhatyouwant.json b/data/namespace/advancement/callthiswhatyouwant.json new file mode 100644 index 0000000..ef7e5f4 --- /dev/null +++ b/data/namespace/advancement/callthiswhatyouwant.json @@ -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" + } + } +} \ No newline at end of file diff --git a/data/namespace/function/load.mcfunction b/data/namespace/function/load.mcfunction new file mode 100644 index 0000000..84d1b94 --- /dev/null +++ b/data/namespace/function/load.mcfunction @@ -0,0 +1 @@ +#This function will run on world loading or data pack loading \ No newline at end of file diff --git a/data/namespace/function/tick.mcfunction b/data/namespace/function/tick.mcfunction new file mode 100644 index 0000000..a9ee1d1 --- /dev/null +++ b/data/namespace/function/tick.mcfunction @@ -0,0 +1 @@ +#This function runs every tick \ No newline at end of file diff --git a/pack.mcmeta b/pack.mcmeta new file mode 100644 index 0000000..05ff435 --- /dev/null +++ b/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "pack_format": 61, + "description": "Data Pack Template" + } +} \ No newline at end of file diff --git a/pack.png b/pack.png new file mode 100644 index 0000000..3ee5cc2 Binary files /dev/null and b/pack.png differ