diff --git a/data/example/function/load.mcfunction b/data/example/function/load.mcfunction new file mode 100644 index 0000000..6e4e16a --- /dev/null +++ b/data/example/function/load.mcfunction @@ -0,0 +1,2 @@ +# load function +say This load function \ No newline at end of file diff --git a/data/example/function/tick.mcfunction b/data/example/function/tick.mcfunction new file mode 100644 index 0000000..294a405 --- /dev/null +++ b/data/example/function/tick.mcfunction @@ -0,0 +1 @@ +# tick function diff --git a/data/global/advancement/name.json b/data/global/advancement/name.json deleted file mode 100644 index cb0ef28..0000000 --- a/data/global/advancement/name.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "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 deleted file mode 100644 index 7c1d10b..0000000 --- a/data/global/advancement/root.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "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 index 1f67a31..9e93689 100644 --- a/data/minecraft/tags/function/load.json +++ b/data/minecraft/tags/function/load.json @@ -1,5 +1,5 @@ { "values": [ - "namespace:load" + "example:load" ] -} +} \ No newline at end of file diff --git a/data/minecraft/tags/function/tick.json b/data/minecraft/tags/function/tick.json index b7ddfc7..e2e7374 100644 --- a/data/minecraft/tags/function/tick.json +++ b/data/minecraft/tags/function/tick.json @@ -1,5 +1,5 @@ { "values": [ - "namespace:tick" + "example:tick" ] -} +} \ No newline at end of file diff --git a/data/namespace/advancement/callthiswhatyouwant.json b/data/namespace/advancement/callthiswhatyouwant.json deleted file mode 100644 index ef7e5f4..0000000 --- a/data/namespace/advancement/callthiswhatyouwant.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "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 deleted file mode 100644 index 84d1b94..0000000 --- a/data/namespace/function/load.mcfunction +++ /dev/null @@ -1 +0,0 @@ -#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 deleted file mode 100644 index a9ee1d1..0000000 --- a/data/namespace/function/tick.mcfunction +++ /dev/null @@ -1 +0,0 @@ -#This function runs every tick \ No newline at end of file