Initial commit

This commit is contained in:
Jordy Goodridge 2023-02-21 12:09:51 -08:00
commit 402f2e194e
90 changed files with 6677 additions and 0 deletions

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
# Disable Git line ending conversion, to prevent packwiz index hashes changing when committing from Windows
* -text

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Exclude exported CurseForge zip files
*.zip
# Exclude exported Modrinth modpacks
*.mrpack
# Exclude packwiz binary
packwiz.exe

5
.packwizignore Normal file
View File

@ -0,0 +1,5 @@
# .packwizignore follows the same format as .gitignore, and can be used to exclude unwanted files from pack exports
# See https://git-scm.com/docs/gitignore
# Exclude README
/README.md

136
config/create-common.toml Normal file
View File

@ -0,0 +1,136 @@
[worldgen]
#
#Modify Create's impact on your terrain
[worldgen.v2]
#
#Prevents all worldgen added by Create from taking effect
disableWorldGen = false
[worldgen.v2.copper_ore]
#
#Range: > 0
minHeight = 40
#
#Range: > 0
maxHeight = 85
#
#Range: > 0
clusterSize = 18
#
#Amount of clusters generated per Chunk.
# >1 to spawn multiple.
# <1 to make it a chance.
# 0 to disable.
#Range: 0.0 ~ 512.0
frequency = 0.0
[worldgen.v2.weathered_limestone]
#
#Range: > 0
minHeight = 10
#
#Range: > 0
maxHeight = 30
#
#Range: > 0
clusterSize = 128
#
#Amount of clusters generated per Chunk.
# >1 to spawn multiple.
# <1 to make it a chance.
# 0 to disable.
#Range: 0.0 ~ 512.0
frequency = 0.015625
[worldgen.v2.zinc_ore]
#
#Range: > 0
minHeight = 15
#
#Range: > 0
maxHeight = 70
#
#Range: > 0
clusterSize = 14
#
#Amount of clusters generated per Chunk.
# >1 to spawn multiple.
# <1 to make it a chance.
# 0 to disable.
#Range: 0.0 ~ 512.0
frequency = 4.0
[worldgen.v2.limestone]
#
#Range: > 0
minHeight = 30
#
#Range: > 0
maxHeight = 70
#
#Range: > 0
clusterSize = 128
#
#Amount of clusters generated per Chunk.
# >1 to spawn multiple.
# <1 to make it a chance.
# 0 to disable.
#Range: 0.0 ~ 512.0
frequency = 0.015625
[worldgen.v2.dolomite]
#
#Range: > 0
minHeight = 20
#
#Range: > 0
maxHeight = 70
#
#Range: > 0
clusterSize = 128
#
#Amount of clusters generated per Chunk.
# >1 to spawn multiple.
# <1 to make it a chance.
# 0 to disable.
#Range: 0.0 ~ 512.0
frequency = 0.015625
[worldgen.v2.gabbro]
#
#Range: > 0
minHeight = 20
#
#Range: > 0
maxHeight = 70
#
#Range: > 0
clusterSize = 128
#
#Amount of clusters generated per Chunk.
# >1 to spawn multiple.
# <1 to make it a chance.
# 0 to disable.
#Range: 0.0 ~ 512.0
frequency = 0.015625
[worldgen.v2.scoria]
#
#Range: > 0
minHeight = 0
#
#Range: > 0
maxHeight = 10
#
#Range: > 0
clusterSize = 128
#
#Amount of clusters generated per Chunk.
# >1 to spawn multiple.
# <1 to make it a chance.
# 0 to disable.
#Range: 0.0 ~ 512.0
frequency = 0.03125

View File

@ -0,0 +1,85 @@
#WorldGen Settings
[worldgen]
#Ore Gen Settings
[worldgen.oregen]
#Ore Settings
[worldgen.oregen.iesniumOre]
#Range configuration top offset.
topOffset = 10
#The tag for the blocks this ore will spawn in.
fillerBlockTag = "occultism:netherrack"
#The size of veins for this ore.
#Range: 0 ~ 127
size = 3
#Range configuration bottom offset.
bottomOffset = 10
#True to generate this ore.
generateOre = true
#The count value for the decorator for this ore.
#Range: 0 ~ 127
count = 10
#Range configuration maximum.
maximum = 128
#Ore Settings
[worldgen.oregen.copperOre]
#Range configuration top offset.
topOffset = 0
#The tag for the blocks this ore will spawn in.
fillerBlockTag = "minecraft:base_stone_overworld"
#The size of veins for this ore.
#Range: 0 ~ 127
size = 9
#Range configuration bottom offset.
bottomOffset = 20
#True to generate this ore.
generateOre = false
#The count value for the decorator for this ore.
#Range: 0 ~ 127
count = 10
#Range configuration maximum.
maximum = 64
#Ore Settings
[worldgen.oregen.silverOre]
#Range configuration top offset.
topOffset = 0
#The tag for the blocks this ore will spawn in.
fillerBlockTag = "minecraft:base_stone_overworld"
#The size of veins for this ore.
#Range: 0 ~ 127
size = 7
#Range configuration bottom offset.
bottomOffset = 5
#True to generate this ore.
generateOre = true
#The count value for the decorator for this ore.
#Range: 0 ~ 127
count = 3
#Range configuration maximum.
maximum = 30
#Underground Grove Settings
[worldgen.underground_grove]
#The chance vines will spawn in the underground grove.
vineChance = 0.3
#The min height for a grove to spawn (applied to the center of the grove, not the floor).
groveSpawnMin = 25
#The max height for a grove to spawn (applied to the center of the grove, not the ceiling).
groveSpawnMax = 60
#The chance glowstone will spawn in the ceiling of the underground grove.
ceilingLightChance = 0.1
#The biome types the underground grove cannot spawn in.
biomeTypeBlacklist = ["NETHER", "END"]
#The chance for a grove to spawn in a chunk (generates 1/groveSpawnChance chunks on average).
groveSpawnChance = 400
#The chance small trees will spawn in the underground grove.
treeChance = 0.1
#The chance grass will spawn in the underground grove.
grassChance = 0.6
#True to generate underground groves. Should not be changed in most scenarios.
generateUndergroundGroves = true

View File

@ -0,0 +1,17 @@
[HUD]
#Set to false to disable the custom HUD.
HUD = false
#Set to false to disable the food/saturation information provided when AppleSkin is installed.
enableFoodInfo = false
#Set to false to disable the custom health bar only.
enableHealthBar = false
[GUI]
#The x-position on the gui of the playerex attributes button.
#Range: -200 ~ 200
guiButtonPosX = 155
#The y-position on the gui of the playerex attributes button.
#Range: -200 ~ 200
guiButtonPosY = 7

View File

@ -0,0 +1,71 @@
#These only have an affect when a player is first joining the world.
[attributes]
#Starting Dexterity - cannot and should not be set to less than 0.
#Range: 0 ~ 20
dexterity = 0
#Starting Constitution (also starting hp in half hearts) - cannot and should not be set to 0 or less than 0.
#Range: 1 ~ 20
constitution = 20
#Starting Strength - cannot and should not be set to less than 0.
#Range: 0 ~ 20
strength = 0
#Starting Luckiness - cannot and should not be set to less than 0.
#Range: 0 ~ 20
luckiness = 0
#Starting Intelligence - cannot and should not be set to less than 0.
#Range: 0 ~ 20
intelligence = 0
#These are adder/modifier functions implemented by default. This is a stopgap config option to disable some until datadriven mechanics are released.
[functions]
#Added on Dexterity
addRangedDamage = true
#Added on Dexterity
addMovementSpeed = true
#Added on Luckiness
addMeleeCritChance = true
#Added on Dexterity
addAttackSpeed = true
#Added on Strength
addArmor = true
#Added on Strength
addHealthRegen = true
#Added on Intelligence
addLifesteal = true
#Added on Luckiness
addLuck = true
#Added on Intelligence
addRangedCritDamage = true
#Added on Constitution
addKnockbackRes = true
#Added on Luckiness
addRangedCritChance = true
#Added on Dexterity
addMeleeCritDamage = true
#Added on Strength
addMeleeDamage = true
#Added on Constitution
addMaxHealth = true
#Added on Intelligence
addHealthRegenAmp = true
#Added on Luckiness
addEvasion = true
[misc]
#If true, resets all attributes to their defaults on death.
resetOnDeath = false
[experienceSplit]
#The percentage of experience that contributes to PlayerEx levels.
#Range: 1.0 ~ 99.0
experienceSplit = 50.0
[expcoeff]
#ExpCoeff offset - cannot and should not be set to 0 or less than 0.
#Range: 1.0 ~ 20.0
offset = 3.0
#ExpCoeff scaling - cannot and should not be set to 0 or less than 0.
#Range: 1.0 ~ 20.0
scale = 1.0

2100
config/quark-common.toml Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,128 @@
#Everything to do with gameplay
[gameplay]
#If true, anvils will show all metal variants. If false, shows only a variant with the default texture
showAllAnvilVariants = true
#If true, tables such as the part builder and tinker station will show all variants. If false shows only a variant with a default texture.
showAllTableVariants = true
#Set this to false to disable new players spawning with the Tinkers' Book.
shouldSpawnWithTinkersBook = true
#If non-empty, only this material will be shown on tools in creative and JEI (or the first valid material if this is invalid for the tool).
#If empty, all materials will show
showOnlyToolMaterial = ""
#If non-empty, only material will be shown on parts in creative and JEI (or the first valid material if this is invalid for the part).
#If empty, all materials will show
showOnlyPartMaterial = ""
#Options related to recipes, limited options as a datapack allows most recipes to be modified
[recipes]
#Makes wither skeletons drop necrotic bones
witherBoneDrop = true
#Number of nuggets produced when an ore block is melted in the smeltery. 9 nuggets would give 1 ingot
#Range: 1 ~ 45
smelteryNuggetsPerOre = 18
#Makes the recipe to alloy netherite in the smeltery only cost 2 gold per netherite ingot. If false uses the vanilla rate of 4 gold per ingot. Disable if there are crafting duplications.
cheaperNetheriteAlloy = true
#Add a recipe that allows you to craft a piece of flint using 3 gravel
addGravelToFlintRecipe = true
#Fixes clear glass not being usable in vanilla recipes that require glass. Config option exists to disable easily in case this fix is redundant to another mod
glassRecipeFix = true
#Number of nuggets produced when an ore block is melted in the foundry. 9 nuggets would give 1 ingot
#Range: 1 ~ 45
foundryNuggetsPerOre = 15
#Allows converting wither bones to regular bones
witherBoneConversion = true
#Slimealls not being usable in vanilla recipes that require slimeballs. Config option exists to disable easily in case this fix is redundant to another mod
slimeRecipeFix = true
#Number of nuggets produced when an ore block is melted in the melter. 9 would give 1 ingot
#Range: 1 ~ 45
melterNuggetsPerOre = 12
#Entity head drops when killed by a charged creeper
[recipes.heads]
stray = true
husk = true
zombified_piglin = true
blaze = true
piglin = true
cave_spider = true
piglin_brute = true
drowned = true
spider = true
enderman = true
#Options related to loot table injections. Note some of the changes are done via global loot managers, these only control injecting loot into loot pools
#If your modpack makes extensive loot table changes, many of these may be automatically disabled. You can also manually set up tables for more control.
[loot]
#Weight of blazing blood in the piglin bartering tables. Set to 0 to disable
#Range: 0 ~ 100
barter_blazing_blood = 20
#Adds slimy saplings and seeds into various loot chests. Helps for worlds without slime islands
slimy_loot = true
#If true, ender dragons will drop scales when damaged by explosions
drop_dragon_Scales = true
#Weight of tinker tools in the vanilla spawn bonus chest, randomly replacing the vanilla axe or shovel. Tool will have a random tier 1 head and binding, plus a wooden handle. Set to 0 to disable.
#For comparison, vanilla wooden axes and pickaxes have a weight of 3, and stone axes/pickaxes have a weight of 1
#Range: 0 ~ 25
tinker_tool_bonus_chest = 2
#Everything to do with world generation
[worldgen]
#Generate Cobalt
generateCobalt = true
#Generate Copper
generateCopper = false
#Approx Ores per Chunk
veinCountCobalt = 8
#Approx Ores per Chunk
veinCountCopper = 20
#Options related to slime islands
[worldgen.slime_islands]
#Settings for sky slime islands in the overworld sky
[worldgen.slime_islands.sky]
#How many chunks on average between islands
#Range: 10 ~ 500
separation = 30
#If true, this island generates
generate = true
#Options related to earth slime islands spawning in the oceans
[worldgen.slime_islands.earth]
#How many chunks on average between islands
#Range: 10 ~ 500
separation = 25
#If true, this island generates
generate = true
#Settings for end slime islands in the outer end islands
[worldgen.slime_islands.end]
#How many chunks on average between islands
#Range: 10 ~ 500
separation = 25
#If true, this island generates
generate = true
#Settings for blood islands in the nether lava ocean
[worldgen.slime_islands.blood]
#How many chunks on average between islands
#Range: 10 ~ 500
separation = 13
#If true, this island generates
generate = true
#Settings for clay islands in the overworld sky
[worldgen.slime_islands.clay]
#How many chunks on average between islands
#Range: 10 ~ 500
separation = 100
#If true, this island generates
generate = true
#Features to use in debugging gameplay and mechanics, generally should not be enabled in packs
[debug]
#If true, forces integration materials to be enabled, even if the relevant metal is missing. Useful for testing material balance.
#Does not provide recipes for any of them, they will only be available to cheat in creative.
forceIntegrationMaterials = false

417
index.toml Normal file
View File

@ -0,0 +1,417 @@
hash-format = "sha256"
[[files]]
file = "config/create-common.toml"
hash = "681412fb885a3ee621171a5384b1d1797356e17ce78ae42c1c02afd97372d13c"
[[files]]
file = "config/occultism-common.toml"
hash = "ddaa0993521aece4f3e7fb23e588540e2420a3ed4b3317e65702839cedeba1f1"
[[files]]
file = "config/playerex-client.toml"
hash = "88dd5f3eafb9948d6f356ca45be0497a31de5cbfcabfd0d7ff4adb8226f716f3"
[[files]]
file = "config/playerex-common.toml"
hash = "2e86cdfe449a76994c0a9717e1afc2571e4f44616722df5b4d14053fedb69074"
[[files]]
file = "config/quark-common.toml"
hash = "0b3c9fe51e91b9cdff07f545ecade6df9f092388a79574077042dc488128ed4e"
[[files]]
file = "config/tconstruct-common.toml"
hash = "d0d7f0cabc0ef494013d8d004434f068de5d5ab90de5bd14c0e39d1a90197715"
[[files]]
file = "kubejs/server_scripts/loot.js"
hash = "2b1cc674725bf4809857b2a83fbced2e77f0315cab04465021dc0bae1148af12"
[[files]]
file = "kubejs/server_scripts/script.js"
hash = "cda775323eaa8a8ab83df653d442f991da605efbb7d91911b6b641d18526c012"
[[files]]
file = "mods/appleskin.pw.toml"
hash = "0d210e83c7140eafbbd0366b257a256b9ce42eab8d9d729efa3a41bf1ba9723b"
metafile = true
[[files]]
file = "mods/applied-energistics-2.pw.toml"
hash = "1c0b0019300b6e06e87249b0f8843dbc6a0ed19e0c679320c69dda9775b7740f"
metafile = true
[[files]]
file = "mods/aquaculture.pw.toml"
hash = "725fb099daedadf39a6596de0bae947e98168a995f8e7e8ce3b70ee0b9e5a0f7"
metafile = true
[[files]]
file = "mods/architectury-api.pw.toml"
hash = "26fca9fdd48a32e506d077fefb9baf09908cae3a3072f5cf4726e9c8f13fde31"
metafile = true
[[files]]
file = "mods/ars-nouveau.pw.toml"
hash = "9a116738043fb2ffffef1ee31556033bd7f2fdf37a7e1c4a7f77a5ac9bb62031"
metafile = true
[[files]]
file = "mods/artifacts.pw.toml"
hash = "fca21ba2e8935773ce2dee899109caee7851fa98b1e72e927bf0dc7b3f599430"
metafile = true
[[files]]
file = "mods/autoreglib.pw.toml"
hash = "56be1f82fadbb2bd17ba0a70911949ef118cb224f9b4d064e2825d0e017a5d44"
metafile = true
[[files]]
file = "mods/better-advancements.pw.toml"
hash = "8f28716ece15f4eef1318e9134ed2356c7adf986a65a6c702a0c994a669444bd"
metafile = true
[[files]]
file = "mods/blood-magic.pw.toml"
hash = "12892f588a6b194af62f65a02d455ad6cb62715e11a7cb04f2b5291ca7b1c840"
metafile = true
[[files]]
file = "mods/bookshelf.pw.toml"
hash = "47b90fdea54bb7b8b04680eddcddd2aec88603b0db1832356b54b1484e6df1f3"
metafile = true
[[files]]
file = "mods/botania.pw.toml"
hash = "b0f9c6bd3fc4d7f51eb3f62ff2783e64e1d1486937ed215d206198228a99cfc4"
metafile = true
[[files]]
file = "mods/cavebiomeapi.pw.toml"
hash = "6e14a564a65da80809731221a415e7352ff1e8d80197fea05dbe7af3d52aa16c"
metafile = true
[[files]]
file = "mods/caves-and-cliffs-backport.pw.toml"
hash = "b1bef26c615ce448127cfc1a3c6b3d3097bf2058806fe6039820f22fb5e4fddd"
metafile = true
[[files]]
file = "mods/cc-tweaked.pw.toml"
hash = "cecb81adf61867beaa7cce38a9eea21e4e98afbb7c1eb784c17e008fd11ef633"
metafile = true
[[files]]
file = "mods/chisels-bits.pw.toml"
hash = "972234d5c9cd6b408830a54d87b688622972b70a55394bd430d80d8051acb29d"
metafile = true
[[files]]
file = "mods/clef.pw.toml"
hash = "54bdcae7f6bf5fb6c70dd8242a37ece1e9e6075bbd098aff898b2e4eec6b701a"
metafile = true
[[files]]
file = "mods/cloth-config.pw.toml"
hash = "a772a30c8657301ae3e5d05e9cdf9ca4f41750d18ba5ab7dd02bee718859f607"
metafile = true
[[files]]
file = "mods/configured.pw.toml"
hash = "c8062291ac9c4b02be34569082c6f2cea6e68a678c31f62fba5ee7807b1338a5"
metafile = true
[[files]]
file = "mods/controlling.pw.toml"
hash = "2869256a89f1013125bbce5fc62265e47012ad09fd3b2cc53f37919bc3c8a042"
metafile = true
[[files]]
file = "mods/create.pw.toml"
hash = "cf6a575860bb0c9ce92aa33ccf881a6a57363914f3c83487e9743f063fef7a91"
metafile = true
[[files]]
file = "mods/curios.pw.toml"
hash = "88de9e0b66391586d0764e8fcca14bf6850a99ea030027bbf7946dafefcd0d5a"
metafile = true
[[files]]
file = "mods/deep-resonance.pw.toml"
hash = "049f5a212c39edd850350bc985f181e27ae4fee49cd7632e8e23e869fe1d6c95"
metafile = true
[[files]]
file = "mods/enhanced-ai.pw.toml"
hash = "fc8d1f75ebcd622700f98ede32e4679fa9ca5d0307b5a50ea237b9601678d329"
metafile = true
[[files]]
file = "mods/epic-fight-mod.pw.toml"
hash = "3ffe0ce36e6d548cdd9c1815ee2ac2eedad10efaf93438b2121f5602ee254360"
metafile = true
[[files]]
file = "mods/expandability.pw.toml"
hash = "856e791972a4705daba7d691290f81ed67a061e4850eb17bd6c9bb82b7b49e20"
metafile = true
[[files]]
file = "mods/fast-leaf-decay.pw.toml"
hash = "7784bbe87c156cdc99cce7ea79cc2d7d96580f716848e33ab215a31351625a61"
metafile = true
[[files]]
file = "mods/flywheel.pw.toml"
hash = "9a643dece883f4eaa644aff19903b40b6ef2e2c5b9e8692c8c4c19d793618304"
metafile = true
[[files]]
file = "mods/game-stages.pw.toml"
hash = "0725a8cfd4588fd15b5ee149124a93a388cfafddad5a78bbc5626ba4c5053c76"
metafile = true
[[files]]
file = "mods/geckolib.pw.toml"
hash = "f1785b6fb4b3bd26594e173737a653a237f9e9e9c0d330faa56bdf0225217d75"
metafile = true
[[files]]
file = "mods/gravestone-mod.pw.toml"
hash = "5d242849b481d8e19ba20dc1cbb56c8d91ca3f3466a7e77c9f7a52c6f96f09b2"
metafile = true
[[files]]
file = "mods/ichunutil.pw.toml"
hash = "66db052a77a41fb26a42ae5803d56a484ee4cae7f0a32561ec43c2afd2e84f13"
metafile = true
[[files]]
file = "mods/insanelib.pw.toml"
hash = "b23510d7150bbd9bc3ed34665fa9969532fae3a2c2332ea310c7cc361995e63b"
metafile = true
[[files]]
file = "mods/jei.pw.toml"
hash = "3aff473c4bf2e5133793d6028bc7c6de57359b20ebe83af08832a1eda08babd3"
metafile = true
[[files]]
file = "mods/just-enough-resources-jer.pw.toml"
hash = "eb73176b93a6a54e5ea869d02236eb750ed36bc5a8cd052ab5032f7f8e25857f"
metafile = true
[[files]]
file = "mods/kubejs.pw.toml"
hash = "03b95396f886a22987e8fee18d1b9855e4f06c09d166e180e3e0339665aeb36b"
metafile = true
[[files]]
file = "mods/light-overlay.pw.toml"
hash = "dc18033aca6d23dd0263d01711055736b1f008efdae079ec703e927257f1b0c5"
metafile = true
[[files]]
file = "mods/mahou-tsukai.pw.toml"
hash = "efcf372f9b1e52e887b4e05189b55f2c74a78dad9d34e64fe754149bed240e55"
metafile = true
[[files]]
file = "mods/mantle.pw.toml"
hash = "5f2f3587ab7a6b97c2a7de730582ebc1cab61769ca8c164c64d41117d92a512a"
metafile = true
[[files]]
file = "mods/mcjtylib.pw.toml"
hash = "aa68b691d378733ef5f86746ab8041134bdba4c81137808020ae5ecb51fc25de"
metafile = true
[[files]]
file = "mods/minecolonies.pw.toml"
hash = "8ae5db846ae42b6d68f1fefd682c78d642661e7ff245c03e502c7b03fbb12ff4"
metafile = true
[[files]]
file = "mods/mrcrayfish-furniture-mod.pw.toml"
hash = "fe3b73d41512471f2e6a1587fe7ef07e7bd436fa9be27a22ac1f8d40443ba15e"
metafile = true
[[files]]
file = "mods/occultism.pw.toml"
hash = "be0db50a708431e4f656eb66da738e57f0cbea88069a7795abd33ba64536bc56"
metafile = true
[[files]]
file = "mods/pams-harvestcraft-2-crops.pw.toml"
hash = "04be4a4af38985796fe6730445ea44c6a9342755990be2f250f593816303a16f"
metafile = true
[[files]]
file = "mods/pams-harvestcraft-2-food-core.pw.toml"
hash = "d718dbaf53f870c0746b71c20c070d550bc35753f4e5fe6661bfa760d01fb52e"
metafile = true
[[files]]
file = "mods/pams-harvestcraft-2-food-extended.pw.toml"
hash = "5958c942c2e2e56870bb9a042deb580fff1ea8049c42ea7a131929583076fa1d"
metafile = true
[[files]]
file = "mods/pams-harvestcraft-2-trees.pw.toml"
hash = "26d1ddc51127cd6c08e8adc8f90343620dfff9ed0d820f9ead1a14e1c86b3a0b"
metafile = true
[[files]]
file = "mods/patchouli.pw.toml"
hash = "99710ca9bd34571405522eee1d43fbf92651248cb3ba33b48778c029acae7df0"
metafile = true
[[files]]
file = "mods/placebo.pw.toml"
hash = "b4948e0b0f5f2a052b15b0439c9948a56d9b9ff254d67c0aa0b34c48d54031c9"
metafile = true
[[files]]
file = "mods/playerex.pw.toml"
hash = "cb0053cfa668792972658d55cb6747561a0294b55f0dbca612a7ec80fe80a732"
metafile = true
[[files]]
file = "mods/quark.pw.toml"
hash = "09d984fc1bde73f4f5b31bca88d0b55c2e3f1dfe8cd1ebed4bd581d8551ddefe"
metafile = true
[[files]]
file = "mods/rftools-base.pw.toml"
hash = "5bebd9135442ba1501eea0ad8aed35388adc090dfb8c782a1370dbcd1bbb6487"
metafile = true
[[files]]
file = "mods/rftools-builder.pw.toml"
hash = "c3c6001f9b56f204cd215e4e5d03ae8aac8b04bf48b9e23a6adbb64f671a2564"
metafile = true
[[files]]
file = "mods/rftools-control.pw.toml"
hash = "a98f3b9887fa5737cf0692142c915dbc2f0fe54a1093428a393f5e3d4e1721e7"
metafile = true
[[files]]
file = "mods/rftools-dimensions.pw.toml"
hash = "1f7302a929f760e831e9d5103a81ece41f1e41910fbc8ab0265d11ed407845df"
metafile = true
[[files]]
file = "mods/rftools-power.pw.toml"
hash = "6a6cb7b2aebb9fa2dcd2eeead0a213d2c832d6edc5783ea177eee464a3f17503"
metafile = true
[[files]]
file = "mods/rftools-storage.pw.toml"
hash = "9c480d34b82884cf069180e12808e562eabe30c6defec8d66c861302f7e45379"
metafile = true
[[files]]
file = "mods/rftools-utility.pw.toml"
hash = "acebca3ec5e788c5264165e9d74608b481d85d51ce6c6468fcdb5222d69d8da8"
metafile = true
[[files]]
file = "mods/rhino.pw.toml"
hash = "bd1f1597a9728b71a28969e4d7c9ed24f29b3c5fc77379a0c9ce5a7a29117594"
metafile = true
[[files]]
file = "mods/rubidium.pw.toml"
hash = "d4e70e177c1c44b11d905f89cc59001fb5941468f18888ac7471b20301065bce"
metafile = true
[[files]]
file = "mods/save-my-stronghold.pw.toml"
hash = "d6ca633f615b20513201f9da9e24af1304db6f9571815ca43c770be528db2f7c"
metafile = true
[[files]]
file = "mods/shutup-experimental-settings.pw.toml"
hash = "bdbf0e89c6bdfcac33f44921835b4a7e7b909214d99badb1d8e15200f836bb90"
metafile = true
[[files]]
file = "mods/simple-voice-chat.pw.toml"
hash = "2b39a686d05930e5c0d6f8ea230a9e3c0e8e62611b4e1a63f6c416c8c7a8de65"
metafile = true
[[files]]
file = "mods/storage-drawers.pw.toml"
hash = "7b5c9093a8309bf016de0bd7bd655b6522632d6c8291c3cdeb9a27c327667311"
metafile = true
[[files]]
file = "mods/structurize.pw.toml"
hash = "b1ce6aec6b311105a14a9ae9017bd6f741c142803cecd5a1a4d5a86aea4a39cd"
metafile = true
[[files]]
file = "mods/the-twilight-forest.pw.toml"
hash = "9103343f6fb5d720f09ce45eee2ba77c892191b43082067da89be04d9fd25a60"
metafile = true
[[files]]
file = "mods/tinkers-construct.pw.toml"
hash = "67071a4a686b460310b840d840c80772cc4474faa2230cb22daafc3091dc642f"
metafile = true
[[files]]
file = "mods/toast-control.pw.toml"
hash = "bad023f10c1f3d68273578e04239f7f97abd8af557744c36c848583b3996fc67"
metafile = true
[[files]]
file = "mods/touhou-little-maid.pw.toml"
hash = "1931380a5f800acc97df3b8af4d49af3aa6d59ba0a8fa0e661824833f1cc639c"
metafile = true
[[files]]
file = "mods/travelersbackpack.pw.toml"
hash = "88be989141b98827775ea704a3ccec4001d7b50de6353bdec100c5e98f4606fd"
metafile = true
[[files]]
file = "mods/when-dungeons-arise.pw.toml"
hash = "3dcc2c64abef44177c877fa13ab7dc1aa54ec17e37edbe1d4648e450c8870dd2"
metafile = true
[[files]]
file = "mods/wthit.pw.toml"
hash = "3e9816e775cf2163b19feb4317bdfdd376432ec8171a4d5f94ae2dd6c2aeff75"
metafile = true
[[files]]
file = "mods/xnet.pw.toml"
hash = "909860250a686a2fc74f16d156572fd953040a42ab8bbf5b316913a6f02ed34d"
metafile = true
[[files]]
file = "mods/ydm-ygo-dueling-mod-ii.pw.toml"
hash = "47d83d451d3d83c6213cbdcb73636fab7ba1ff02e23363c243279927f0ea34d1"
metafile = true
[[files]]
file = "mods/yungs-api.pw.toml"
hash = "d3631df0e5d46e75045a781efe2eda7ccbadc70c775dea298f6f5516e4f4dd74"
metafile = true
[[files]]
file = "mods/yungs-better-dungeons.pw.toml"
hash = "def6e1aeb1416c41503a391973b9fde650eda84204178f90a99faa89fe9bfb83"
metafile = true
[[files]]
file = "mods/yungs-better-strongholds.pw.toml"
hash = "8202f215a2400426059f5f9f488ef8a842d01d39000580c51581eb240549e276"
metafile = true
[[files]]
file = "servers.dat"
hash = "3960b391a666b4e27c0fd38a03169e95d4702bc8e1533e1d7053437f1f4d02bc"

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,83 @@
// priority: 0
settings.logAddedRecipes = true
settings.logRemovedRecipes = true
settings.logSkippedRecipes = false
settings.logErroringRecipes = true
console.info('Hello, World! (You will see this line every time server resources reload)')
onEvent('recipes', event => {
event.shaped('ydm:duel_playmat', [
'AA'
], {
A: 'minecraft:andesite'
});
event.shaped('ydm:white_deck_box', [
'PPP',
'P P',
'PPP'
], {
P: 'minecraft:paper'
});
event.shapeless('ydm:black_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/black']);
event.shapeless('ydm:red_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/red']);
event.shapeless('ydm:green_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/green']);
event.shapeless('ydm:brown_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/brown']);
event.shapeless('ydm:blue_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/blue']);
event.shapeless('ydm:purple_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/purple']);
event.shapeless('ydm:cyan_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/cyan']);
event.shapeless('ydm:light_gray_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/light_gray']);
event.shapeless('ydm:gray_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/gray']);
event.shapeless('ydm:pink_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/pink']);
event.shapeless('ydm:lime_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/lime']);
event.shapeless('ydm:yellow_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/yellow']);
event.shapeless('ydm:light_blue_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/light_blue']);
event.shapeless('ydm:magenta_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/magenta']);
event.shapeless('ydm:orange_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/orange']);
event.shapeless('ydm:white_deck_box', ['#ydm:deck_box/dyeable', '#forge:dyes/white']);
event.shapeless('ydm:card_binder', ['#ydm:deck_box', 'minecraft:book']).keepIngredient('#ydm:deck_box');
})
onEvent('item.tags', event => {
event.get('ydm:deck_box').add('ydm:black_deck_box');
event.get('ydm:deck_box').add('ydm:red_deck_box');
event.get('ydm:deck_box').add('ydm:green_deck_box');
event.get('ydm:deck_box').add('ydm:brown_deck_box');
event.get('ydm:deck_box').add('ydm:blue_deck_box');
event.get('ydm:deck_box').add('ydm:purple_deck_box');
event.get('ydm:deck_box').add('ydm:cyan_deck_box');
event.get('ydm:deck_box').add('ydm:light_gray_deck_box');
event.get('ydm:deck_box').add('ydm:gray_deck_box');
event.get('ydm:deck_box').add('ydm:pink_deck_box');
event.get('ydm:deck_box').add('ydm:lime_deck_box');
event.get('ydm:deck_box').add('ydm:yellow_deck_box');
event.get('ydm:deck_box').add('ydm:light_blue_deck_box');
event.get('ydm:deck_box').add('ydm:magenta_deck_box');
event.get('ydm:deck_box').add('ydm:orange_deck_box');
event.get('ydm:deck_box').add('ydm:white_deck_box');
event.get('ydm:deck_box').add('ydm:iron_deck_box');
event.get('ydm:deck_box').add('ydm:gold_deck_box');
event.get('ydm:deck_box').add('ydm:diamond_deck_box');
event.get('ydm:deck_box').add('ydm:emerald_deck_box');
event.get('ydm:deck_box').add('ydm:patreon_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:black_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:red_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:green_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:brown_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:blue_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:purple_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:cyan_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:light_gray_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:gray_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:pink_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:lime_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:yellow_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:light_blue_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:magenta_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:orange_deck_box');
event.get('ydm:deck_box/dyeable').add('ydm:white_deck_box');
});

13
mods/appleskin.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "AppleSkin"
filename = "appleskin-forge-mc1.16.x-2.4.0.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "556ba3ebdb401e0833e7151e7a7bca5f8fdac160"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3686480
project-id = 248787

View File

@ -0,0 +1,13 @@
name = "Applied Energistics 2"
filename = "appliedenergistics2-8.4.7.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "094025e39c8334556c069f8c21b19b4a54966b13"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3608871
project-id = 223794

13
mods/aquaculture.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Aquaculture 2"
filename = "Aquaculture-1.16.5-2.1.23.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "0ad71497b1aaa04f2f2610dc61233cbf7e4d14fd"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4074702
project-id = 60028

View File

@ -0,0 +1,13 @@
name = "Architectury API (Fabric/Forge)"
filename = "architectury-1.32.66.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "e0f8a7569e033feea68e3d18e243ba13b36b0a9d"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3857643
project-id = 419699

13
mods/ars-nouveau.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Ars Nouveau"
filename = "ars_nouveau-1.16.5-1.25.10.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "f708cc6f3952eb8beb60e9f6f1994c75eed02427"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4300733
project-id = 401955

13
mods/artifacts.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Artifacts"
filename = "Artifacts-1.16.5-2.10.5.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "9e70d203ee7f4560e1dd789f8e91f4325af69387"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3665636
project-id = 312353

13
mods/autoreglib.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "AutoRegLib"
filename = "AutoRegLib-1.6-49.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/NvZ9ZhwE/versions/1.6-49/AutoRegLib-1.6-49.jar"
hash-format = "sha1"
hash = "921cf73b9d31bce5d332115a5144c3fca2010f93"
[update]
[update.modrinth]
mod-id = "NvZ9ZhwE"
version = "1DMKg7NT"

View File

@ -0,0 +1,13 @@
name = "Better Advancements"
filename = "BetterAdvancements-1.16.5-0.1.1.115.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "7b1729250d87eb0be895687d60d313ccb9831ab2"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3404330
project-id = 272515

13
mods/blood-magic.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Blood Magic "
filename = "BloodMagic-1.16.4-3.1.13-39.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "1a5689d41c2668a627b114ff55bab6ae329e609e"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3870899
project-id = 224791

13
mods/bookshelf.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Bookshelf"
filename = "Bookshelf-Forge-1.16.5-10.4.33.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "9d8ae731be2dd554968213224a74ad58f2e5cad0"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4351252
project-id = 228525

13
mods/botania.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Botania"
filename = "Botania-1.16.5-420.3.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/pfjLUfGv/versions/r2awMhqz/Botania-1.16.5-420.3.jar"
hash-format = "sha1"
hash = "561b20994937a19e800a96ee0c5708eaa0e46e7c"
[update]
[update.modrinth]
mod-id = "pfjLUfGv"
version = "r2awMhqz"

13
mods/cavebiomeapi.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "CaveBiomeAPI [Forge]"
filename = "cavebiomeapi-1.16.5-1.4.2.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "ca6409d0cd146fbb14fec1a746719fdbc613a5fd"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3519248
project-id = 441706

View File

@ -0,0 +1,13 @@
name = "Caves & Cliffs Backport"
filename = "cavesandcliffs-1.16.5-7.2.0.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "1e36bd608898135a06dc46ec4102f12a011c63d9"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3592876
project-id = 417430

13
mods/cc-tweaked.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "CC: Tweaked"
filename = "cc-tweaked-1.16.5-1.101.2.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/gu7yAYhd/versions/kzYmI0uK/cc-tweaked-1.16.5-1.101.2.jar"
hash-format = "sha1"
hash = "078d3edbd3c3651a1defbc08a51cb85ab48e7d8f"
[update]
[update.modrinth]
mod-id = "gu7yAYhd"
version = "kzYmI0uK"

13
mods/chisels-bits.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Chisels & Bits - For Forge"
filename = "chiselsandbits-1.0.63.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "e8651c1cce8df80a932875e2810c0b9e9ded6a85"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3593643
project-id = 231095

13
mods/clef.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Clef"
filename = "Clef-1.16.5-10.1.0.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "41d69b54682eaf115ef208e79b942c2e780e4c89"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4397375
project-id = 274783

13
mods/cloth-config.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Cloth Config API"
filename = "cloth-config-4.15.82-forge.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/iYo4XV1L/cloth-config-4.15.82-forge.jar"
hash-format = "sha1"
hash = "4ae61569d0bb82c0555b86a8c259d4f631f00582"
[update]
[update.modrinth]
mod-id = "9s6osm5g"
version = "iYo4XV1L"

13
mods/configured.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Configured"
filename = "configured-1.5.3-1.16.5.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "4c7894a347b7629c71d77ad1f04735a2823365d5"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3946491
project-id = 457570

13
mods/controlling.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Controlling"
filename = "Controlling-7.0.0.28.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "8833b92989a652473a7dff40c28407d2ab4cc5d3"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3531453
project-id = 250398

13
mods/create.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Create"
filename = "create-mc1.16.5_v0.3.2g.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "5b32b0310d037deed14200e3b748bd02d46d9471"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3536025
project-id = 328085

13
mods/curios.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Curios API (Forge)"
filename = "curios-forge-1.16.5-4.0.8.2.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "25df638beedfd5a339eaeeea15a93d3708dc4116"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3725386
project-id = 309927

View File

@ -0,0 +1,13 @@
name = "Deep Resonance"
filename = "deepresonance-1.16-2.0.11.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/gzruRGfo/versions/xAge37Q0/deepresonance-1.16-2.0.11.jar"
hash-format = "sha1"
hash = "b2551fb9980d577ffe90145aecaf53758188e919"
[update]
[update.modrinth]
mod-id = "gzruRGfo"
version = "xAge37Q0"

13
mods/enhanced-ai.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Enhanced AI"
filename = "EnhancedAI-1.2.3-mc1.16.5.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "cbad11b47bf63eced3f08547226b4661d2ef1ad2"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3577769
project-id = 515276

View File

@ -0,0 +1,13 @@
name = "Epic Fight"
filename = "EpicFight-16.6.4.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "5bdd3f98baec5f0e77369bf658ddd666a3532aa3"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4029362
project-id = 405076

View File

@ -0,0 +1,13 @@
name = "ExpandAbility"
filename = "expandability-2.0.1-forge.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "9e55899e91a3fad1477d84ff52e6122357fa8c2d"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3277762
project-id = 465066

View File

@ -0,0 +1,13 @@
name = "Fast Leaf Decay"
filename = "FastLeafDecay-v25.2.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "daa2b93322bff163a5c9b4653d38fe93b0725743"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3590413
project-id = 230976

13
mods/flywheel.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Flywheel"
filename = "flywheel-1.16-0.2.5.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "30dbb119ce3d455bee065c0bef04a00827b3a5b3"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3535459
project-id = 486392

13
mods/game-stages.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Game Stages"
filename = "GameStages-Forge-1.16.5-7.3.14.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "1c6dbf069a8e75b6684d5cd59399389153a24364"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3773528
project-id = 268655

13
mods/geckolib.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "GeckoLib"
filename = "geckolib-forge-1.16.5-3.0.106.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "14940646d175f8704d8e06d96258b12fd645e67d"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4182600
project-id = 388172

View File

@ -0,0 +1,13 @@
name = "GraveStone Mod"
filename = "gravestone-1.16.5-1.0.7.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "adb3e1f6755c12d479e2a25d7ccd21b827814467"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3447911
project-id = 238551

13
mods/ichunutil.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "iChunUtil"
filename = "iChunUtil-1.16.5-10.7.0.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "2b6ef402e6dd97fec6936b36fe535f60eb352d1b"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4397363
project-id = 229060

13
mods/insanelib.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "InsaneLib"
filename = "InsaneLib-1.4.2-mc1.16.5.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "435f082764f26495480d79700a1980b353efeaca"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3599474
project-id = 465109

13
mods/jei.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Just Enough Items (JEI)"
filename = "jei-1.16.5-7.8.0.1009.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "cb07340ff3b0d66d0541ff98e5fa6abcd392b08c"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4371666
project-id = 238222

View File

@ -0,0 +1,13 @@
name = "Just Enough Resources (JER)"
filename = "JustEnoughResources-1.16.5-0.12.1.133.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "1cad5026cf4c14b5fd3b6b01eb96cc4ff12c0c2a"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3545538
project-id = 240630

13
mods/kubejs.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "KubeJS"
filename = "kubejs-forge-1605.3.19-build.299.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "91831aa8159e1076debd5f0daacf832d777b0f4a"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3647098
project-id = 238086

View File

@ -0,0 +1,13 @@
name = "Light Overlay"
filename = "light-overlay-5.8.1.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/YfOlc91N/versions/5.8.1/light-overlay-5.8.1.jar"
hash-format = "sha1"
hash = "f4c97a77f2a39f12800ec5534ffbf94520fde965"
[update]
[update.modrinth]
mod-id = "YfOlc91N"
version = "Mrmbdkpe"

13
mods/mahou-tsukai.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Mahou Tsukai"
filename = "mahoutsukai-1.16.5-v1.34.38.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "ad1f4095bd8ae284a0fbf986437d86432f8ffbd4"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4296007
project-id = 342543

13
mods/mantle.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Mantle"
filename = "Mantle-1.16.5-1.6.157.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/Cg6Uc79H/versions/OyiVX48M/Mantle-1.16.5-1.6.157.jar"
hash-format = "sha1"
hash = "61cd1d256a29445d153bd076e090f6172eff2aff"
[update]
[update.modrinth]
mod-id = "Cg6Uc79H"
version = "OyiVX48M"

13
mods/mcjtylib.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "McJtyLib"
filename = "mcjtylib-1.16-5.1.8.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/1Zu0uTEE/versions/YZKmio6M/mcjtylib-1.16-5.1.8.jar"
hash-format = "sha1"
hash = "0ddbcd55b80a231e958bc114b76981028d999d9f"
[update]
[update.modrinth]
mod-id = "1Zu0uTEE"
version = "YZKmio6M"

13
mods/minecolonies.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "MineColonies"
filename = "minecolonies-1.16.5-1.0.978-RELEASE.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "b8910bac145573bccf2448497a4021ef5dc6fced"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3949019
project-id = 245506

View File

@ -0,0 +1,13 @@
name = "MrCrayfish's Furniture Mod"
filename = "cfm-7.0.0pre22-1.16.3.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "565ec70fe30e3cd711e2b841de3265f176897283"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3346467
project-id = 55438

13
mods/occultism.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Occultism"
filename = "occultism-1.16.5-1.29.1.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "18d929aac94fd3180a43d9dd4111caebcf8ce02d"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3861416
project-id = 361026

View File

@ -0,0 +1,13 @@
name = "Pam's HarvestCraft 2 - Crops"
filename = "pamhc2crops-1.16.3-1.0.2.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "0bfb58f8d02961527617c6453c0193c4da21bbf6"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3276350
project-id = 361385

View File

@ -0,0 +1,13 @@
name = "Pam's HarvestCraft 2 - Food Core"
filename = "pamhc2foodcore-1.16.3-1.0.2.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "906cb61b2fc1d5017bb825ffc0de6577ebbf2fbd"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3190867
project-id = 372534

View File

@ -0,0 +1,13 @@
name = "Pam's HarvestCraft 2 - Food Extended"
filename = "pamhc2foodextended-1.16.3-1.0.2.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "55450ecd24f91ea5baf6b1958065b08afbec4924"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3260454
project-id = 402231

View File

@ -0,0 +1,13 @@
name = "Pam's HarvestCraft 2 - Trees"
filename = "pamhc2trees-1.16.3-1.0.1.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "fb80138375c2f6f575a99f8ea022b0507ab39d75"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3281234
project-id = 365460

13
mods/patchouli.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Patchouli"
filename = "Patchouli-1.16.4-53.3.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/nU0bVIaL/versions/1.16.4-53.3-forge/Patchouli-1.16.4-53.3.jar"
hash-format = "sha1"
hash = "cf7c2efc013a0247be4c2ce3f3d6a553643e00f7"
[update]
[update.modrinth]
mod-id = "nU0bVIaL"
version = "swxCEODj"

13
mods/placebo.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Placebo"
filename = "Placebo-1.16.5-4.7.0.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "2c616fccc1888f90ddf60d947aa97c94481a33d7"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3750838
project-id = 283644

13
mods/playerex.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "PlayerEx"
filename = "playerex-1.1.8-1.16.5.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "a68c0ff934fc31fa4303c36e44e2522196bb680a"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3299357
project-id = 409221

13
mods/quark.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Quark"
filename = "Quark-r2.4-322.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/qnQsVE2z/versions/WVcMK697/Quark-r2.4-322.jar"
hash-format = "sha1"
hash = "c314a534737baba9416c4947e15f81c6243f9844"
[update]
[update.modrinth]
mod-id = "qnQsVE2z"
version = "WVcMK697"

13
mods/rftools-base.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "RFTools Base"
filename = "rftoolsbase-1.16-2.1.5.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/hIO8IsD8/versions/xSIBZdZg/rftoolsbase-1.16-2.1.5.jar"
hash-format = "sha1"
hash = "78f2d9172ceac9d169f20387895a607ac2404e0e"
[update]
[update.modrinth]
mod-id = "hIO8IsD8"
version = "xSIBZdZg"

View File

@ -0,0 +1,13 @@
name = "RFTools Builder"
filename = "rftoolsbuilder-1.16-3.1.11.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/e0IclJLr/versions/dkDBeHQw/rftoolsbuilder-1.16-3.1.11.jar"
hash-format = "sha1"
hash = "8a93c2a73f9facd5ecc804801c689084768285dd"
[update]
[update.modrinth]
mod-id = "e0IclJLr"
version = "dkDBeHQw"

View File

@ -0,0 +1,13 @@
name = "RFTools Control"
filename = "rftoolscontrol-1.16-4.0.18.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/DQjhR62z/versions/jKHrXVKa/rftoolscontrol-1.16-4.0.18.jar"
hash-format = "sha1"
hash = "3808bfd7424a3ea156e1a42dffde556283c899b7"
[update]
[update.modrinth]
mod-id = "DQjhR62z"
version = "jKHrXVKa"

View File

@ -0,0 +1,13 @@
name = "RFTools Dimensions"
filename = "rftoolsdim-1.16-7.0.21.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/N4D9AicU/versions/9MLsLI7k/rftoolsdim-1.16-7.0.21.jar"
hash-format = "sha1"
hash = "21283f973ba6b927ea7c40d95f45937a29f7ca4e"
[update]
[update.modrinth]
mod-id = "N4D9AicU"
version = "9MLsLI7k"

View File

@ -0,0 +1,13 @@
name = "RFTools Power"
filename = "rftoolspower-1.16-3.0.14.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/YWbLuPa1/versions/THr19lE6/rftoolspower-1.16-3.0.14.jar"
hash-format = "sha1"
hash = "8948b15730dc98d2e96f522568095419a9e00e9b"
[update]
[update.modrinth]
mod-id = "YWbLuPa1"
version = "THr19lE6"

View File

@ -0,0 +1,13 @@
name = "RFTools Storage"
filename = "rftoolsstorage-1.16-2.0.19.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/tx4M6qRg/versions/nfzVIzeD/rftoolsstorage-1.16-2.0.19.jar"
hash-format = "sha1"
hash = "7f7623476353c95ae6d0daaa9e69d304599d4564"
[update]
[update.modrinth]
mod-id = "tx4M6qRg"
version = "nfzVIzeD"

View File

@ -0,0 +1,13 @@
name = "RFTools Utility"
filename = "rftoolsutility-1.16-3.1.16.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/7n3HbHSE/versions/cZ0ksXPd/rftoolsutility-1.16-3.1.16.jar"
hash-format = "sha1"
hash = "8cb939636661c5b0d52baa7ca8184d439fa99093"
[update]
[update.modrinth]
mod-id = "7n3HbHSE"
version = "cZ0ksXPd"

13
mods/rhino.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Rhino"
filename = "rhino-forge-1605.1.5-build.75.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "d7cf08ed860845564a22cd17c1f17f857d4b33dd"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3525704
project-id = 416294

13
mods/rubidium.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Rubidium"
filename = "rubidium-0.2.11.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/4ZqxOvjD/versions/QrS8ZpUH/rubidium-0.2.11.jar"
hash-format = "sha1"
hash = "df2e838172cd56b646966fcd58559903ea29533b"
[update]
[update.modrinth]
mod-id = "4ZqxOvjD"
version = "QrS8ZpUH"

View File

@ -0,0 +1,13 @@
name = "Save My Stronghold! (Forge)"
filename = "SaveMyStronghold-1.16.4-1.0.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "e662cb4d4a046ee7c52b2ba72eef66f78daf3204"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3188216
project-id = 355248

View File

@ -0,0 +1,13 @@
name = "Shutup Experimental Settings!"
filename = "shutupexperimentalsettings-1.0.3.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "0db5333ee87e5672026912fb0c7b77d34e27d13c"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3188120
project-id = 407174

View File

@ -0,0 +1,13 @@
name = "Simple Voice Chat"
filename = "voicechat-forge-1.16.5-2.3.28.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/9eGKb6K1/versions/yzY9p5uF/voicechat-forge-1.16.5-2.3.28.jar"
hash-format = "sha1"
hash = "df4c7ff797c2516712e9c70579c783cfc15838d2"
[update]
[update.modrinth]
mod-id = "9eGKb6K1"
version = "yzY9p5uF"

View File

@ -0,0 +1,13 @@
name = "Storage Drawers"
filename = "StorageDrawers-1.16.3-8.5.2.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "854514ef529e665b77632882f7274642f11517dd"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3776277
project-id = 223852

13
mods/structurize.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Structurize"
filename = "structurize-1.16.5-1.0.418-ALPHA.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "15e49e336b102c5aaaaa69cd43b75d955371211f"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3894957
project-id = 298744

View File

@ -0,0 +1,13 @@
name = "The Twilight Forest"
filename = "twilightforest-1.16.5-4.0.870-universal.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "25dea11b15da9f1417b9d7a6dde6b46b136a9a41"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3575220
project-id = 227639

View File

@ -0,0 +1,13 @@
name = "Tinkers' Construct"
filename = "TConstruct-1.16.5-3.3.4.335.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/rxIIYO6c/versions/3KJI35bq/TConstruct-1.16.5-3.3.4.335.jar"
hash-format = "sha1"
hash = "bfccf8cb255bc64101c0ae27cac7f3b386b88078"
[update]
[update.modrinth]
mod-id = "rxIIYO6c"
version = "3KJI35bq"

View File

@ -0,0 +1,13 @@
name = "Toast Control"
filename = "ToastControl-1.16.5-4.4.0.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "64b0baff7b60fb47bdf6aec6d9090a810196bc6e"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3556882
project-id = 271740

View File

@ -0,0 +1,13 @@
name = "Touhou Little Maid"
filename = "touhoulittlemaid-1.16.5-1.0.2.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "9f2356280f2df5f8b3f0c277d2817e3827cc55a9"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3717835
project-id = 355044

View File

@ -0,0 +1,13 @@
name = "Traveler's Backpack"
filename = "TravelersBackpack-1.16.5-5.4.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/rlloIFEV/versions/1.16.5-5.4.4/TravelersBackpack-1.16.5-5.4.4.jar"
hash-format = "sha1"
hash = "d8de3e177c5bda19d70db347d45bed365f7f13bb"
[update]
[update.modrinth]
mod-id = "rlloIFEV"
version = "kenpECMd"

View File

@ -0,0 +1,13 @@
name = "When Dungeons Arise"
filename = "DungeonsArise-1.16.5-2.1.47-release.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com//data/8DfbfASn/versions/1.16.5-2.1.47-forge/DungeonsArise-1.16.5-2.1.47-release.jar"
hash-format = "sha1"
hash = "431d78d669866afa8250b04183595cda8aceb473"
[update]
[update.modrinth]
mod-id = "8DfbfASn"
version = "OGv8ukkd"

13
mods/wthit.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "WTHIT"
filename = "wthit-2.10.2-forge.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/6AQIaxuO/versions/forge-2.10.2/wthit-2.10.2-forge.jar"
hash-format = "sha1"
hash = "d1dd811c131116c2f78ec1d2d3a8f40c4dc9ff67"
[update]
[update.modrinth]
mod-id = "6AQIaxuO"
version = "jYlq21ZV"

13
mods/xnet.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "XNet"
filename = "xnet-1.16-3.0.17.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/iu1jkWqa/versions/uIt0prUP/xnet-1.16-3.0.17.jar"
hash-format = "sha1"
hash = "572333f9f1b3031a5ab54511ffe9d3ed32d0adea"
[update]
[update.modrinth]
mod-id = "iu1jkWqa"
version = "uIt0prUP"

View File

@ -0,0 +1,13 @@
name = "YDM - Ygo Dueling Mod II"
filename = "ydm-1.16.5-2.10.5.46.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "a1aeb82f3f8878aa05be5610eecc893ebbb95481"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4005955
project-id = 419657

13
mods/yungs-api.pw.toml Normal file
View File

@ -0,0 +1,13 @@
name = "YUNG's API (Forge)"
filename = "YungsApi-1.16.4-Forge-13.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "a9e45884b53d35d3a28110a398c0dc87a4accf6a"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3494919
project-id = 421850

View File

@ -0,0 +1,13 @@
name = "YUNG's Better Dungeons (Forge)"
filename = "BetterDungeons-1.16.4-1.2.1.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "b20537329907a708f5210f787adf36ff2e7fb753"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3476138
project-id = 510089

View File

@ -0,0 +1,13 @@
name = "YUNG's Better Strongholds (Forge)"
filename = "BetterStrongholds-1.16.4-1.2.1.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "f56111e582e7fff492cf5afadb554751358a5da7"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3412586
project-id = 465575

13
pack.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Community Vocality 2"
author = "Voice Fuckers"
version = "1.0.0"
pack-format = "packwiz:1.1.0"
[index]
file = "index.toml"
hash-format = "sha256"
hash = "48650df0291c50d19c8e8ce9c4775b815b5ede538d6e04217484ba0cf95ec62c"
[versions]
forge = "36.2.39"
minecraft = "1.16.5"

BIN
servers.dat Normal file

Binary file not shown.