commit 485367ecbffda4981ef036e8b4eba4a04c3ac9dc Author: cootshk Date: Sun Jun 4 11:14:10 2023 -0500 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..75ec3f0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.vscode/* \ No newline at end of file diff --git a/noNetherite/data/minecraft/functions/tick.json b/noNetherite/data/minecraft/functions/tick.json new file mode 100644 index 0000000..60538d7 --- /dev/null +++ b/noNetherite/data/minecraft/functions/tick.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#nonetherite:tick" + ] +} \ No newline at end of file diff --git a/noNetherite/data/minecraft/tags/functions/tick.json b/noNetherite/data/minecraft/tags/functions/tick.json new file mode 100644 index 0000000..6bd9c39 --- /dev/null +++ b/noNetherite/data/minecraft/tags/functions/tick.json @@ -0,0 +1,5 @@ +{ + "values": [ + "nonetherite:tick" + ] +} diff --git a/noNetherite/data/nonetherite/functions/tick.mcfunction b/noNetherite/data/nonetherite/functions/tick.mcfunction new file mode 100644 index 0000000..9111ef9 --- /dev/null +++ b/noNetherite/data/nonetherite/functions/tick.mcfunction @@ -0,0 +1,27 @@ +#armor +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_helmet"}]}] run give @s netherite_ingot 5 +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_chestplate"}]}] run give @s netherite_ingot 8 +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_leggings"}]}] run give @s netherite_ingot 7 +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_boots"}]}] run give @s netherite_ingot 4 +#tools +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_sword"}]}] run give @s netherite_ingot 2 +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_pickaxe"}]}] run give @s netherite_ingot 3 +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_axe"}]}] run give @s netherite_ingot 3 +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_shovel"}]}] run give @s netherite_ingot 1 +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_hoe"}]}] run give @s netherite_ingot 2 +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_sword"}]}] run give @s stick 1 +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_pickaxe"}]}] run give @s stick 2 +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_axe"}]}] run give @s stick 2 +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_shovel"}]}] run give @s stick 1 +execute as @a[nbt={Inventory:[{id:"minecraft:netherite_hoe"}]}] run give @s stick 2 + +#clear everything +clear @a[nbt={Inventory:[{id:"minecraft:netherite_helmet"}]}] netherite_helmet +clear @a[nbt={Inventory:[{id:"minecraft:netherite_chestplate"}]}] netherite_chestplate +clear @a[nbt={Inventory:[{id:"minecraft:netherite_leggings"}]}] netherite_leggings +clear @a[nbt={Inventory:[{id:"minecraft:netherite_boots"}]}] netherite_boots +clear @a[nbt={Inventory:[{id:"minecraft:netherite_sword"}]}] netherite_sword +clear @a[nbt={Inventory:[{id:"minecraft:netherite_pickaxe"}]}] netherite_pickaxe +clear @a[nbt={Inventory:[{id:"minecraft:netherite_axe"}]}] netherite_axe +clear @a[nbt={Inventory:[{id:"minecraft:netherite_shovel"}]}] netherite_shovel +clear @a[nbt={Inventory:[{id:"minecraft:netherite_hoe"}]}] netherite_hoe \ No newline at end of file diff --git a/noNetherite/data/nonetherite/tags/functions/tick.json b/noNetherite/data/nonetherite/tags/functions/tick.json new file mode 100644 index 0000000..6bd9c39 --- /dev/null +++ b/noNetherite/data/nonetherite/tags/functions/tick.json @@ -0,0 +1,5 @@ +{ + "values": [ + "nonetherite:tick" + ] +} diff --git a/noNetherite/pack.mcmeta b/noNetherite/pack.mcmeta new file mode 100644 index 0000000..a641ab0 --- /dev/null +++ b/noNetherite/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack":{ + "pack_format": 12, + "description": "Disables all netherite tools, weapons, and armor." + } +} \ No newline at end of file diff --git a/noNetherite/pack.png b/noNetherite/pack.png new file mode 100644 index 0000000..6e74024 Binary files /dev/null and b/noNetherite/pack.png differ