Added a backpack mod and fixed a config.

This commit is contained in:
Raz 2023-04-24 00:05:56 -05:00
parent 1f4c482916
commit c44f1a62d2
12 changed files with 390 additions and 14 deletions

View File

@ -1,3 +1,28 @@
# 1.0.14
## Config Changes
- Nether ore equivalents for modded ores now spawn in the Nether.
## Mods
### Additions
- Compressed Creativity
- Adds Pneumaticraft integration to Create.
- Compressium
- Adds compressed versions of several blocks for storage.
- Neko's Enchanted Books
- Adds a unique icon for each enchated book.
- Sophisticated Backpacks
- Adds a dyeable and upgradable backpack that can be placed in the world.
### Updates
- Almost Unified 0.4.1 -> 0.4.2
- Create Deco 1.3.0 -> 1.3.1
- Fancy Menu 2.14.6 -> 2.14.7
# 1.0.13
## Config Changes

257
config/bno-common.toml Normal file
View File

@ -0,0 +1,257 @@
[ore_protector]
#Set to false if you want the Piglins to attack when using Silk Touch Tools
silkEffect = true
#Add Blocks to be protected by Piglins (Example: 'minecraft:glowstone')
protectedBlocks = ["bno:nether_emerald_ore", "bno:nether_diamond_ore", "bno:nether_lapis_ore", "bno:nether_redstone_ore", "minecraft:nether_gold_ore", "bno:nether_silver_ore", "bno:nether_iron_ore", "bno:nether_lead_ore", "bno:nether_nickel_ore", "bno:nether_coal_ore", "bno:nether_copper_ore", "bno:nether_aluminum_ore", "bno:nether_tin_ore", "bno:nether_osmium_ore", "bno:nether_uranium_ore", "bno:nether_zinc_ore", "minecraft:glowstone", "minecraft:nether_quartz_ore"]
#Piglin Projection Settings
#If set to 'true' Piglins will protect Nether Ores
piglinGuard = true
#Set range that Piglins will aggro when mining ores(Default = 16)
#Range: 0 ~ 64
protectionRange = 16
[ore_generation]
[ore_generation.nickel]
#Set Nickel Max Spawn Height (Default = 50)
#Range: 0 ~ 256
nickelMaxHeight = 50
#Set Nickel Min Spawn Height (Default = 30)
#Range: 0 ~ 250
nickelMinHeight = 30
#Set Max Nickel Vein Size (Default = 4)
#Range: 0 ~ 32
nickelVeinSize = 4
#Set Nickel Spawn Chance (Default = 4)
#Range: 0 ~ 64
nickelChance = 4
[ore_generation.osmium]
#Set Osmium Min Spawn Height (Default = 30)
#Range: 0 ~ 250
osmiumMinHeight = 30
#Set Osmium Max Spawn Height (Default = 75)
#Range: 0 ~ 256
osmiumMaxHeight = 75
#Set Max Osmium Vein Size (Default = 8)
#Range: 0 ~ 32
osmiumVeinSize = 8
#Set Osmium Spawn Chance (Default = 4)
#Range: 0 ~ 64
osmiumChance = 4
[ore_generation.aluminum]
#Set Aluminum Spawn Chance (Default = 4)
#Range: 0 ~ 64
aluminumChance = 4
#Set Aluminum Max Spawn Height (Default = 110)
#Range: 0 ~ 256
aluminumMaxHeight = 110
#Set Max Aluminum Vein Size (Default = 8)
#Range: 0 ~ 32
aluminumVeinSize = 8
#Set Aluminum Min Spawn Height (Default = 75)
#Range: 0 ~ 250
aluminumMinHeight = 75
[ore_generation.lead]
#Set Lead Spawn Chance (Default = 4)
#Range: 0 ~ 64
leadChance = 4
#Set Max Lead Vein Size (Default = 8)
#Range: 0 ~ 32
leadVeinSize = 8
#Set Lead Max Spawn Height (Default = 110)
#Range: 0 ~ 256
leadMaxHeight = 110
#Set Lead Min Spawn Height (Default = 40)
#Range: 0 ~ 250
leadMinHeight = 40
[ore_generation.diamond]
#Set Diamond Min Spawn Height (Default = 90)
#Range: 0 ~ 250
diamondMinHeight = 90
#Set Diamond Spawn Chance (Default = 3)
#Range: 0 ~ 32
diamondChance = 2
#Set Max Diamond Vein Size (Default = 8)
#Range: 0 ~ 36
diamondVeinSize = 8
#Set Diamond Max Spawn Height (Default = 125)
#Range: 0 ~ 256
diamondMaxHeight = 125
[ore_generation.world_generation]
#Generate Nickel Ore
nickel = true
#Generate Osmium Ore
osmium = true
#Generate Aluminum Ore
aluminum = true
#Generate Lead Ore
lead = true
#Generate Diamond Ore
diamond = true
#Generate Tin Ore
tin = true
#Generate Coal Ore
coal = true
#Generate Iron Ore
iron = true
#Generate Copper Ore
copper = true
#Generate Lapis Ore
lapis = true
#Generate Silver Ore
silver = true
#Generate Uranium Ore
uranium = true
#Generate Zinc Ore
zinc = true
#Generate Emerald Ore
emerald = true
#Generate Redstone Ore
redstone = true
[ore_generation.tin]
#Set Tin Min Spawn Height (Default = 40)
#Range: 0 ~ 250
tinMinHeight = 40
#Set Tin Max Spawn Height (Default = 110)
#Range: 0 ~ 256
tinMaxHeight = 110
#Set Max Tin Vein Size (Default = 8)
#Range: 0 ~ 32
tinVeinSize = 8
#Set Tin Spawn Chance (Default = 3)
#Range: 0 ~ 64
tinChance = 3
[ore_generation.coal]
#Set Coal Max Spawn Height (Default = 115)
#Range: 0 ~ 256
coalMaxHeight = 115
#Set Coal Min Spawn Height (Default = 25)
#Range: 0 ~ 250
coalMinHeight = 25
#Set Max Coal Vein Size (Default = 17)
#Range: 0 ~ 64
coalVeinSize = 17
#Set Coal Spawn Chance (Default = 20)
#Range: 0 ~ 64
coalChance = 20
[ore_generation.iron]
#Set Iron Max Spawn Height (Default = 110)
#Range: 0 ~ 256
ironMaxHeight = 110
#Set Iron Spawn Chance (Default = 40)
#Range: 0 ~ 64
ironChance = 40
#Set Iron Min Spawn Height (Default = 40)
#Range: 0 ~ 250
ironMinHeight = 40
#Set Max Iron Vein Size (Default = 8)
#Range: 0 ~ 32
ironVeinSize = 8
[ore_generation.copper]
#Set Max Copper Vein Size (Default = 8)
#Range: 0 ~ 32
copperVeinSize = 8
#Set Copper Spawn Chance (Default = 3)
#Range: 0 ~ 64
copperChance = 3
#Set Copper Min Spawn Height (Default = 35)
#Range: 0 ~ 250
copperMinHeight = 35
#Set Copper Max Spawn Height (Default = 75)
#Range: 0 ~ 256
copperMaxHeight = 75
[ore_generation.lapis]
#Set Lapis Min Spawn Height (Default = 30)
#Range: 0 ~ 250
lapisMinHeight = 30
#Set Max Lapis Vein Size (Default = 7)
#Range: 0 ~ 36
lapisVeinSize = 7
#Set Lapis Spawn Chance (Default = 2)
#Range: 0 ~ 64
lapisChance = 2
#Set Lapis Max Spawn Height (Default = 60)
#Range: 0 ~ 256
lapisMaxHeight = 60
[ore_generation.silver]
#Set Silver Min Spawn Height (Default = 30)
#Range: 0 ~ 250
silverMinHeight = 30
#Set Max Silver Vein Size (Default = 9)
#Range: 0 ~ 64
silverVeinSize = 9
#Set Silver Spawn Chance (Default = 4)
#Range: 0 ~ 64
silverChance = 4
#Set Silver Max Spawn Height (Default = 60)
#Range: 0 ~ 256
silverMaxHeight = 60
[ore_generation.uranium]
#Set Uranium Spawn Chance (Default = 2)
#Range: 0 ~ 64
uraniumChance = 2
#Set Uranium Max Spawn Height (Default = 125)
#Range: 0 ~ 256
uraniumMaxHeight = 125
#Set Uranium Min Spawn Height (Default = 90)
#Range: 0 ~ 250
uraniumMinHeight = 90
#Set Max Uranium Vein Size (Default = 4)
#Range: 0 ~ 32
uraniumVeinSize = 4
[ore_generation.zinc]
#Set Zinc Min Spawn Height (Default = 55)
#Range: 0 ~ 250
zincMinHeight = 55
#Set Max Zinc Vein Size (Default = 12)
#Range: 0 ~ 32
zincVeinSize = 12
#Set Zinc Max Spawn Height (Default = 100)
#Range: 0 ~ 256
zincMaxHeight = 100
#Set Zinc Spawn Chance (Default = 8)
#Range: 0 ~ 64
zincChance = 8
[ore_generation.emerald]
#Set Max Emerald Vein Size (Default = 4)
#Range: 0 ~ 36
emeraldVeinSize = 4
#Set Emerald Spawn Chance (Default = 2)
#Range: 0 ~ 32
emeraldChance = 1
#Set Emerald Max Spawn Height (Default = 55)
#Range: 0 ~ 256
emeraldMaxHeight = 55
#Set Emerald Min Spawn Height (Default = 25)
#Range: 0 ~ 250
emeraldMinHeight = 25
[ore_generation.redstone]
#Set Redstone Spawn Chance (Default = 8)
#Range: 0 ~ 64
redstoneChance = 8
#Set Redstone Max Spawn Height (Default = 115)
#Range: 0 ~ 256
redstoneMaxHeight = 115
#Set Redstone Min Spawn Height (Default = 80)
#Range: 0 ~ 250
redstoneMinHeight = 80
#Set Max Redstone Vein Size (Default = 8)
#Range: 0 ~ 36
redstoneVeinSize = 8

View File

@ -12,6 +12,10 @@ hash = "8603b247cecb151a056178a85450ccd45f8cdda9103de9a5ea7b02aef74d10fc"
file = "config/almostunified/unify.json"
hash = "efeedd71425606e55f2c16be71d0d325607045d3e914f886b0b57ed09b65413a"
[[files]]
file = "config/bno-common.toml"
hash = "14f2ca542aca5299f3eb232d23b9139595d323e54e2ffeb0398ca81422c44ab8"
[[files]]
file = "config/enhancedvisuals-client.json"
hash = "ad170bba4bca8888f6484cda3153e1a9cdc9c5be81f2ca98c902962d1d606f96"
@ -86,7 +90,7 @@ metafile = true
[[files]]
file = "mods/almost-unified.pw.toml"
hash = "9a6f730003ef873e4056c50bc4c2dc2e904b885cc9d45af664bfbe92f2f35fba"
hash = "59b8fb44cb978053fd40d92f6b5c603ce4c0fa710914b336f2f3f8792e01a7dc"
metafile = true
[[files]]
@ -209,6 +213,16 @@ file = "mods/compact-machines.pw.toml"
hash = "53d2af852bfd91938b19c1c25a9678ce2cb34f09494514f44fa0e59313e8eab6"
metafile = true
[[files]]
file = "mods/compressedcreativity.pw.toml"
hash = "6b791b4da04c58e6e79c4e096b668f9e3b2d640192cf098819519e543c45e16c"
metafile = true
[[files]]
file = "mods/compressium.pw.toml"
hash = "35769a155413ac8fd4c933e6bed251ae3e153eda0c6d7d150bd37caeb577538c"
metafile = true
[[files]]
file = "mods/configured.pw.toml"
hash = "38abb00776d34d4c650c59ef4a75a6562c96f914cbe17f09f176a682f23fd883"
@ -256,7 +270,7 @@ metafile = true
[[files]]
file = "mods/create-deco.pw.toml"
hash = "a4bc0ca0e08fa631a4021f1b3357d106800939fd0cea1b2b61f10fb04b6e144e"
hash = "dd1dfe68b934f7a311aa513cee56dd00d1c33a29581a752c93f31260fa664bea"
metafile = true
[[files]]
@ -361,7 +375,7 @@ metafile = true
[[files]]
file = "mods/fancymenu-forge.pw.toml"
hash = "5c68e8ef4c0c96b226cd25e48ef3850b3f34aae151ce453eaa12b4d7aaa145f5"
hash = "d5ca40e2692def1540d7935ded342d1596105d04c770874d07029a8d1f19b782"
metafile = true
[[files]]
@ -659,6 +673,11 @@ file = "mods/mrcrayfishs-gun-mod.pw.toml"
hash = "b624e40ebb53d9c19e7a45c8731dca04d60f6ee359a5ce64eaafca7177a731e5"
metafile = true
[[files]]
file = "mods/nekos-enchanted-books.pw.toml"
hash = "f9aacce691fc98b2d6a72c3c0fd4c5d1ee735f906fa9fceb45d20d823acac4e2"
metafile = true
[[files]]
file = "mods/netherportalfix.pw.toml"
hash = "c16809bbd0291ca38cff60aaae308581f4e5dd19a418a8d679a08d3ae4dd2022"
@ -914,6 +933,16 @@ file = "mods/smooth-chunk-save.pw.toml"
hash = "7b34fbdf04e61cc4870d3c27cd995b4b6fb2b766eaa6cae539599c44a3ab76b8"
metafile = true
[[files]]
file = "mods/sophisticated-backpacks.pw.toml"
hash = "18f9d2a42bfa0d4c33e545d0e04f03ab8e92ee379cdab071d87ac56c330ffc69"
metafile = true
[[files]]
file = "mods/sophisticated-core.pw.toml"
hash = "cfb7a2d8568d63aecbadd6fad0d83c420c8daf42251c0b4cf77f010aaf7ebe68"
metafile = true
[[files]]
file = "mods/sound-physics-remastered.pw.toml"
hash = "f2911639cfd58f1f44df7835493555a5aea7a729413f1c5f6dae744136d4c782"

View File

@ -1,13 +1,13 @@
name = "Almost Unified"
filename = "almostunified-forge-1.19.2-0.4.1.jar"
filename = "almostunified-forge-1.19.2-0.4.2.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "13483583dab823104bb28642be0d6cf3c3eec7ea"
hash = "a84b806b7b5a7771681347ceb5b66b6473c6a38e"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4498255
file-id = 4502464
project-id = 633823

View File

@ -0,0 +1,13 @@
name = "Compressed Creativity"
filename = "compressedcreativity-1.19.2-0.1.5.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "b65d4266bcea03ea7d4e006ad2ab07bcc2fdab66"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4278938
project-id = 549381

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

@ -0,0 +1,13 @@
name = "Compressium"
filename = "Compressium-2.1.1-build.8+mc1.19.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "61745821af06d47545ccb804f20299aa15e4f89d"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 3872847
project-id = 342929

View File

@ -1,13 +1,13 @@
name = "Create Deco"
filename = "createdeco-1.3.0-1.19.2.jar"
filename = "createdeco-1.3.1-1.19.2.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "b31884987c9dc5c5f766d9613235ff274e6a1cbf"
hash = "5050283687d11b2044b6255864fee5405ed097ae"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4476781
file-id = 4504123
project-id = 509285

View File

@ -1,13 +1,13 @@
name = "FancyMenu [Forge]"
filename = "fancymenu_forge_2.14.6_MC_1.19-1.19.2.jar"
filename = "fancymenu_forge_2.14.7_MC_1.19-1.19.2.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "d4939e4ce65e4b99ef189338b76a8f121f8c1def"
hash = "137924633e1268e668159cf3b053084ccd43a61a"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4501464
file-id = 4503132
project-id = 367706

View File

@ -0,0 +1,13 @@
name = "Neko's Enchanted Books"
filename = "NekosEnchantedBooks-1.19-1.8.0.jar"
side = "client"
[download]
hash-format = "sha1"
hash = "b16bfd21e948ccc2a250ea7e1c087de35104ac48"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4018074
project-id = 441114

View File

@ -0,0 +1,13 @@
name = "Sophisticated Backpacks"
filename = "sophisticatedbackpacks-1.19.2-3.18.45.819.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "7a40949884ead6ffbbfaed10ab37461f00525aa0"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4499805
project-id = 422301

View File

@ -0,0 +1,13 @@
name = "Sophisticated Core"
filename = "sophisticatedcore-1.19.2-0.5.51.251.jar"
side = "both"
[download]
hash-format = "sha1"
hash = "3a012a31384b2f71563ee38359e3bd3b26496450"
mode = "metadata:curseforge"
[update]
[update.curseforge]
file-id = 4503931
project-id = 618298

View File

@ -1,12 +1,12 @@
name = "ScrumptiousCraft Um"
author = "razage"
version = "1.0.13"
version = "1.0.14"
pack-format = "packwiz:1.1.0"
[index]
file = "index.toml"
hash-format = "sha256"
hash = "9fc78421c90f8e0708509c43432bb2aa5bccab4b0dc24c037e1756f5caaef10f"
hash = "647e5a295742e70bc2160d55e99e6ec2a40d1f25f9c6c36e2dc9079da1d26ff9"
[versions]
forge = "43.2.8"