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:
15
1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt
Normal file
15
1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt
Normal 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
|
14
1.20.1-FearFactoryTest/devtools/test.py
Normal file
14
1.20.1-FearFactoryTest/devtools/test.py
Normal 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)
|
Reference in New Issue
Block a user