added dev tools folder

be sure to install pyperclip

You can do that by typing "pip install pyperclip" in your command line to install the pyperclip package for python
This commit is contained in:
2025-05-17 14:31:35 -05:00
parent 6fc76a7856
commit 52d4dea5ba
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,15 @@
minecraft:zombie,minecraft:overworld
minecraft:enderman,minecraft:end
minecraft:blaze,minecraft:nether
minecraft:cow,minecraft:overworld
minecraft:strider,minecraft:nether
minecraft:shulker,minecraft:end
minecraft:skeleton,minecraft:nether
minecraft:creeper,minecraft:overworld
minecraft:ghast,minecraft:nether
minecraft:phantom,minecraft:end
minecraft:piglin,minecraft:nether
minecraft:spider,minecraft:overworld
minecraft:wither_skeleton,minecraft:nether
minecraft:witch,minecraft:overworld
minecraft:guardian,minecraft:overworld

View File

@ -0,0 +1,14 @@
import pyperclip
x = ""
with open("MobDimSpawningRules.txt", "r") as file:
x+=file.read()
y=""
for i in x.split('\n'):
y += str(i.split(",").__str__())+",\n"
print(y)
print("data copied to clipboard")
pyperclip.copy(y)