From 52d4dea5ba7a7a068adc61a3a67299dc09325e40 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 17 May 2025 14:31:35 -0500 Subject: [PATCH] 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 --- .../devtools/MobDimSpawningRules.txt | 15 +++++++++++++++ 1.20.1-FearFactoryTest/devtools/test.py | 14 ++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt create mode 100644 1.20.1-FearFactoryTest/devtools/test.py diff --git a/1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt b/1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt new file mode 100644 index 0000000..a1991b0 --- /dev/null +++ b/1.20.1-FearFactoryTest/devtools/MobDimSpawningRules.txt @@ -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 diff --git a/1.20.1-FearFactoryTest/devtools/test.py b/1.20.1-FearFactoryTest/devtools/test.py new file mode 100644 index 0000000..22e5aaf --- /dev/null +++ b/1.20.1-FearFactoryTest/devtools/test.py @@ -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) \ No newline at end of file