Compare commits
4 Commits
8dcc5384a4
...
5fd712c11a
| Author | SHA1 | Date | |
|---|---|---|---|
| 5fd712c11a | |||
| 2a4233293e | |||
| 9a5a265952 | |||
| 728df49120 |
7
.gitignore
vendored
7
.gitignore
vendored
@ -5,4 +5,9 @@
|
||||
*.mrpack
|
||||
|
||||
# Exclude packwiz binary
|
||||
packwiz.exe
|
||||
packwiz.exe
|
||||
|
||||
# Exclude scripts
|
||||
/*.ps1
|
||||
/*.bat
|
||||
/*.txt
|
||||
@ -4,4 +4,7 @@
|
||||
# Exclude README
|
||||
/README.md
|
||||
|
||||
/static/*
|
||||
/static/*
|
||||
/*.ps1
|
||||
/*.bat
|
||||
/*.txt
|
||||
127
config/domestication-innovation.toml
Normal file
127
config/domestication-innovation.toml
Normal file
@ -0,0 +1,127 @@
|
||||
|
||||
[general]
|
||||
#true if wolves, cats, parrots, foxes, axolotls, etc can be set to wander, sit or follow
|
||||
trinary_command_system = true
|
||||
#true if axolotls are fully tameable (axolotl must be tamed with tropical fish)
|
||||
tameable_axolotls = true
|
||||
#true if horses, donkeys, llamas, etc can be given enchants, beds, etc
|
||||
tameable_horse = true
|
||||
#true if foxes are fully tameable (fox must be tamed via breeding)
|
||||
tameable_fox = true
|
||||
#true if rabbits are fully tameable (rabbit must be tamed with carrots)
|
||||
tameable_rabbit = true
|
||||
#true if frogs are fully tameable (rabbit must be tamed with spider eyes)
|
||||
tameable_frog = true
|
||||
#true if attacks do not register on pets from their owners and go through them to attack a mob behind them
|
||||
swing_through_pets = true
|
||||
#true if apples can turn into rotten apples if they despawn
|
||||
rotten_apple = true
|
||||
#true if mobs can respawn in pet beds the next morning after they die
|
||||
pet_bed_respawns = true
|
||||
#true if collar tag functionality are enabled. If this is disabled, there is no way to enchant mobs!
|
||||
collar_tags = true
|
||||
#true if rabbits scare ravagers like they used to do
|
||||
rabbits_scare_ravagers = true
|
||||
#true if animal tamer villagers are enabled. Their work station is a pet bed
|
||||
animal_tamer_villager = true
|
||||
#the spawn weight of the pet store in villages, set to 0 to disable it entirely
|
||||
#Range: 0 ~ 1000
|
||||
petstore_village_weight = 17
|
||||
|
||||
[loot]
|
||||
#true if pet curse enchantments should only appear in loot, and not the enchanting table.
|
||||
pet_curse_enchantments_loot_only = true
|
||||
#percent chance of woodland mansion loot table containing sinister carrot:
|
||||
#Range: 0.0 ~ 1.0
|
||||
sinister_carrot_loot_chance = 0.3
|
||||
#percent chance of burried treasure loot table containing Bubbling book:
|
||||
#Range: 0.0 ~ 1.0
|
||||
bubbling_loot_chance = 0.65
|
||||
#percent chance of woodland mansion loot table containing Vampire book:
|
||||
#Range: 0.0 ~ 1.0
|
||||
vampirism_loot_chance = 0.22
|
||||
#percent chance of end city loot table containing Void Cloud book:
|
||||
#Range: 0.0 ~ 1.0
|
||||
void_cloud_loot_chance = 0.19
|
||||
#percent chance of mineshaft loot table containing Ore Scenting book:
|
||||
#Range: 0.0 ~ 1.0
|
||||
ore_scenting_loot_chance = 0.15
|
||||
#percent chance of ancient city loot table containing Muffled book:
|
||||
#Range: 0.0 ~ 1.0
|
||||
muffled_loot_chance = 0.19
|
||||
#percent chance of nether fortress loot table containing Blazing Protection book:
|
||||
#Range: 0.0 ~ 1.0
|
||||
blazing_protection_loot_chance = 0.2
|
||||
|
||||
[enchantments]
|
||||
#true if health boost enchant is enabled, false if disabled
|
||||
health_boost_enabled = true
|
||||
#true if fireproof enchant is enabled, false if disabled
|
||||
fireproof_enabled = true
|
||||
#true if immunity frame enchant is enabled, false if disabled
|
||||
immunity_frame_enabled = true
|
||||
#true if deflection enchant is enabled, false if disabled
|
||||
deflection_enabled = true
|
||||
#true if poison resistance enchant is enabled, false if disabled
|
||||
poison_resistance_enabled = true
|
||||
#true if chain lightning enchant is enabled, false if disabled
|
||||
chain_lightning_enabled = true
|
||||
#true if speedster enchant is enabled, false if disabled
|
||||
speedster_enabled = true
|
||||
#true if frost fang enchant is enabled, false if disabled
|
||||
frost_fang_enabled = true
|
||||
#true if magnetic enchant is enabled, false if disabled
|
||||
magnetic_enabled = true
|
||||
#true if linked inventory enchant is enabled, false if disabled
|
||||
linked_inventory_enabled = true
|
||||
#true if total recall enchant is enabled, false if disabled
|
||||
total_recall_enabled = true
|
||||
#true if health siphon enchant is enabled, false if disabled
|
||||
health_siphon_enabled = true
|
||||
#true if bubbling enchant is enabled, false if disabled
|
||||
bubbling_enabled = true
|
||||
#true if herding enchant is enabled, false if disabled
|
||||
herding_enabled = true
|
||||
#true if amphibious enchant is enabled, false if disabled
|
||||
amphibious_enabled = true
|
||||
#true if vampire enchant is enabled, false if disabled
|
||||
vampire_enabled = true
|
||||
#true if void cloud enchant is enabled, false if disabled
|
||||
void_cloud_enabled = true
|
||||
#true if charisma enchant is enabled, false if disabled
|
||||
charisma_enabled = true
|
||||
#true if shadow hands enchant is enabled, false if disabled
|
||||
shadow_hands_enabled = true
|
||||
#true if disc jockey enchant is enabled, false if disabled
|
||||
disc_jockey_enabled = true
|
||||
#true if defusal enchant is enabled, false if disabled
|
||||
defusal_enabled = true
|
||||
#true if warping bite enchant is enabled, false if disabled
|
||||
warping_bite_enabled = true
|
||||
#true if ore scenting enchant is enabled, false if disabled
|
||||
ore_scenting_enabled = true
|
||||
#true if gluttonous enchant is enabled, false if disabled
|
||||
gluttonous_enabled = true
|
||||
#true if psychic wall enchant is enabled, false if disabled
|
||||
psychic_wall_enabled = true
|
||||
#true if intimidation enchant is enabled, false if disabled
|
||||
intimidation_enabled = true
|
||||
#true if tethered teleport enchant is enabled, false if disabled
|
||||
tethered_teleport_enabled = true
|
||||
#true if muffled enchant is enabled, false if disabled
|
||||
muffled_enabled = true
|
||||
#true if blazing protection enchant is enabled, false if disabled
|
||||
blazing_protection_enabled = true
|
||||
#true if healing aura enchant is enabled, false if disabled
|
||||
healing_aura_enabled = true
|
||||
#true if rejuvenation enchant is enabled, false if disabled
|
||||
rejuvenation_enabled = true
|
||||
#true if undead curse enchant is enabled, false if disabled
|
||||
undead_curse_enabled = true
|
||||
#true if infamy curse enchant is enabled, false if disabled
|
||||
infamy_curse_enabled = true
|
||||
#true if blight curse enchant is enabled, false if disabled
|
||||
blight_curse_enabled = true
|
||||
#true if immaturity curse enchant is enabled, false if disabled
|
||||
immaturity_curse_enabled = true
|
||||
|
||||
179
config/epicsiegemod-common.toml
Normal file
179
config/epicsiegemod-common.toml
Normal file
@ -0,0 +1,179 @@
|
||||
|
||||
#General settings
|
||||
[General]
|
||||
#Mobs that are exempt from AI modifications [default: [minecraft:iron_golem]
|
||||
AI_Blacklist = ["minecraft:iron_golem"]
|
||||
#Prevents players skipping the night through sleep [default: false]
|
||||
allowSleep = false
|
||||
#Awareness Radius [default: 64]
|
||||
#Range: > 0
|
||||
awarenessRadius = 64
|
||||
#The interval in which 'hard' days will occur where mob spawning is increased and lighting is ignored (0 = off, default = 8/full moon) [default: 8]
|
||||
#Range: > 0
|
||||
hardcoreDayCycle = 8
|
||||
#Maximum number of attackers per target [default: 16]
|
||||
#Range: 0 ~ 128
|
||||
pathingCap = 16
|
||||
#Temporary invulnerability in ticks when respawning and teleporting [default: 200]
|
||||
#Range: > 0
|
||||
resistanceCooldown = 200
|
||||
#Xray Distance [default: 64]
|
||||
#Range: > 0
|
||||
xrayDistance = 64
|
||||
|
||||
#Attack settings
|
||||
[Attack]
|
||||
#Allows mobs to attack villagers as they would players [default: true]
|
||||
attackPets = true
|
||||
#Everyone one and everything is a target [default: false]
|
||||
attackEverything = false
|
||||
#Mobs are passive until provoked [default: false]
|
||||
neutralMobs = false
|
||||
#Mobs will strafe more than normal and avoid imminent explosions [default: true]
|
||||
attackEvasion = true
|
||||
#Animals will fight back if provoked [default: true]
|
||||
animalsAttack = true
|
||||
|
||||
#Advanced settings
|
||||
[Advanced]
|
||||
#List of mobs that can dig through blocks [default: [minecraft:zombie]
|
||||
diggerMobs = []
|
||||
#List of blocks that digger mobs are forbidden from digging (Format: 'minecraft:wool' prefix with # if mentioning a block tag)
|
||||
diggingBlacklist = []
|
||||
#The item given to a digger 5% of the time [default: minecraft:iron_pickaxe]
|
||||
diggerItem = "minecraft:iron_pickaxe"
|
||||
#Is the digging blacklist inverted? [default: false]
|
||||
diggingBlacklistInverted = false
|
||||
#Digging mobs require the proper tools to dig [default: true]
|
||||
diggingRequiresTools = true
|
||||
#How common demolition variants are [default: 0.1]
|
||||
#Range: 0.0 ~ 1.0
|
||||
demolitionChance = 0.0
|
||||
#List of mobs that can drop live TNT [default: [minecraft:zombie]
|
||||
demolitionMobs = []
|
||||
#List of mobs that can pillar up and build stairs [default: [minecraft:zombie]
|
||||
buildingMobs = []
|
||||
#If mobs should be allowed to grief blocks [default: false]
|
||||
griefing = false
|
||||
#List of mobs that aren't allowed to grief
|
||||
griefingBlacklist = []
|
||||
#If mobs should be allowed to grief all light emitting blocks [default: true]
|
||||
griefLightSources = false
|
||||
#What blocks will be targeted for destruction when idle (Format: 'minecraft:wool' prefix with # if mentioning a block tag)
|
||||
griefableBlocks = ["minecraft:chest", "minecraft:furnace", "minecraft:crafting_table", "#minecraft:fence_gates", "minecraft:melon_block", "minecraft:pumpkin", "#forge:glass", "#forge:glass_panes", "#forge:stained_glass", "#forge:stained_glass_panes", "#minecraft:crops", "minecraft:brewing_stand", "minecraft:enchanting_table", "minecraft:cake", "minecraft:ladder", "#minecraft:wooden_doors", "minecraft:farmland", "minecraft:bookshelf", "#minecraft:saplings", "#minecraft:beds", "#minecraft:fences", "#minecraft:planks"]
|
||||
#List of blocks that mobs can pillar with [default: [minecraft:cobblestone]
|
||||
pillarBlocks = ["minecraft:cobblestone"]
|
||||
#If mobs should be allowed to jump/leap at their target [default: false]
|
||||
jumping = true
|
||||
#The height the mobs reach when jumping [default: 0.4]
|
||||
#Range: 0.01 ~ 8.0
|
||||
jumpHeight = 0.4
|
||||
#List of mobs that can jump/leap at their target [default: [minecraft:zombie]
|
||||
jumpingMobs = ["minecraft:zombie"]
|
||||
#If mobs should be allowed to target blocks for the mobs to actively target [default: true]
|
||||
blockTargeting = true
|
||||
#If the block targeting should be as important as targeting entities (When enabled the goal gets added to the targetSelector instead of the goalSelector) [default: true]
|
||||
targetBlocksImportance = false
|
||||
#List of mobs that can actively target blocks [default: [minecraft:zombie]
|
||||
targetingMobs = ["minecraft:zombie"]
|
||||
#What blocks will be targeted for removal when idle (Format: 'minecraft:wool' prefix with # if mentioning a block tag)
|
||||
blockTargets = ["#minecraft:candles"]
|
||||
|
||||
#Other settings
|
||||
[Other]
|
||||
#The factor by which mob health and damage multipliers will be increased when bosses are killed [default: 0.1]
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
bossKillModifier = 0.0
|
||||
#The upper limit of the Boss Kill Modifier [default: 3.0]
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
bossModifierCap = 1.0
|
||||
#Debug mob targeting by printing the targeting out [default: false]
|
||||
debugTargets = false
|
||||
#List of custom potion types witches can throw (id:duration:lvl) [default: [minecraft:harming:1:0, minecraft:slowness:200:0, minecraft:blindness:200:0, minecraft:poison:200:0, minecraft:weakness:200:1, minecraft:mining_fatigue:200:2] ]
|
||||
witchPotions = ["minecraft:harming:1:0", "minecraft:slowness:200:0", "minecraft:blindness:200:0", "minecraft:poison:200:0", "minecraft:weakness:200:1", "minecraft:mining_fatigue:200:2"]
|
||||
#Allows Enderman to teleport the player instead of themselves [default: true]
|
||||
enderPlayerTeleport = true
|
||||
#The chance a Spider will web its target to the ground [default: 0.25]
|
||||
#Range: 0.0 ~ 1.0
|
||||
webbingChance = 0.25
|
||||
#Dying to zombies will turn your corpse into one of them [default: true]
|
||||
infectiousZombies = true
|
||||
|
||||
#Creeper settings
|
||||
[Creepers]
|
||||
#Ignores the listing and allows any mob to have a Creeper rider [default: true]
|
||||
allCreeperJockeys = true
|
||||
#Creepers will attempt to blast through walls [default: true]
|
||||
breaching = false
|
||||
#AND HIS NAME IS... [default: 0.01]
|
||||
#Range: 0.0 ~ 1.0
|
||||
cenaChance = 0.01
|
||||
#The chance a Creeper will spawn riding another mob [default: 0.1]
|
||||
#Range: 0.0 ~ 1.0
|
||||
creeperJockeyChance = 0.1
|
||||
#A list of mobs which can become Creeper Jockeys
|
||||
creeperJockeyMobs = []
|
||||
#Creeper detonations leave behind flaming craters [default: true]
|
||||
napalm = true
|
||||
#A list of mobs which when exploded generate napalm
|
||||
napalmMobs = ["minecraft:creeper"]
|
||||
#The chance a Creeper will spawn pre-powered [default: 0.1]
|
||||
#Range: 0.0 ~ 1.0
|
||||
poweredRarity = 0.1
|
||||
#Creepers will continue approaching their target while arming [default: true]
|
||||
walkingFuse = true
|
||||
|
||||
#Skeletons settings
|
||||
[Skeletons]
|
||||
#How likely Skeletons are to miss their target [default: 0]
|
||||
#Range: > 0
|
||||
arrowError = 0
|
||||
#How far away can Skeletons shoot from [default: 64]
|
||||
#Range: > 1
|
||||
fireDistance = 64
|
||||
#How far away can Skeletons shoot from [default: 64]
|
||||
#Range: 0.0 ~ 1.0
|
||||
witherSkeletonChance = 0.1
|
||||
#Effects that Skeleton arrows can have (id:duration:lvl) [default: [minecraft:slowness:60:0]
|
||||
arrowTips = ["minecraft:slowness:60:0"]
|
||||
|
||||
#Attribute settings
|
||||
[Attributes]
|
||||
#Health modifier [default: 1.0]
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
healthModifier = 1.0
|
||||
#Damage modifier [default: 1.0]
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
damageModifier = 1.0
|
||||
#Speed modifier [default: 1.0]
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
speedModifier = 1.0
|
||||
#Knockback modifier [default: 1.0]
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
knockbackModifier = 1.0
|
||||
#Boss Health modifier [default: false]
|
||||
bossHealthModifier = false
|
||||
#Boss Damage modifier [default: false]
|
||||
bossDamageModifier = false
|
||||
#Boss Speed modifier [default: false]
|
||||
bossSpeedModifier = false
|
||||
#Boss Knockback modifier [default: false]
|
||||
bossKnockbackModifier = false
|
||||
|
||||
#Game Stages support
|
||||
[GameStages]
|
||||
#The stage required until mobs can dig through blocks [empty = disabled]
|
||||
diggerStage = ""
|
||||
#The stage required until mobs can drop live TNT [empty = disabled]
|
||||
demolitionStage = ""
|
||||
#The stage required until mobs can pillar up and build stairs [empty = disabled]
|
||||
buildingStage = ""
|
||||
#The stage required until mobs can grief blocks [empty = disabled]
|
||||
griefingStage = ""
|
||||
#The stage required until creeper jockeys can spawn [empty = disabled]
|
||||
creeperJockeyStage = ""
|
||||
#The stage required until mobs can jump at their target [empty = disabled]
|
||||
jumpingStage = ""
|
||||
#The stage required until mobs can actively target blocks [empty = disabled]
|
||||
blockTargetingStage = ""
|
||||
|
||||
@ -0,0 +1,6 @@
|
||||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"touhou_little_maid:fairy"
|
||||
]
|
||||
}
|
||||
6
config/paxi/datapacks/ExtendedFeeding/pack.mcmeta
Normal file
6
config/paxi/datapacks/ExtendedFeeding/pack.mcmeta
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 8,
|
||||
"description": "More targets for Sanguine in Origins Minus"
|
||||
}
|
||||
}
|
||||
83
config/sedparties-common.toml
Normal file
83
config/sedparties-common.toml
Normal file
@ -0,0 +1,83 @@
|
||||
|
||||
#Common Party Settings
|
||||
[timers]
|
||||
#Delay (in seconds) for player to accept invite before it automatically expires.
|
||||
#Range: 5 ~ 60
|
||||
playerAcceptTimer = 30
|
||||
#Delay (in ticks) for player packet syncing (hunger, xp)
|
||||
#Range: 10 ~ 200
|
||||
playerUpdateInterval = 10
|
||||
#Delay (in ticks) for player packet syncing for less frequent items (World Temp, etc)
|
||||
#Range: 40 ~ 800
|
||||
playerSlowUpdateInterval = 40
|
||||
|
||||
[mechanics]
|
||||
#Max size for a party
|
||||
#Range: > 2
|
||||
partySize = 20
|
||||
#Makes the party system utilize the vanilla team system as well.
|
||||
useVanillaTeams = true
|
||||
#Allow players to attack each other in parties
|
||||
friendlyFire = false
|
||||
|
||||
[xp-share]
|
||||
#Allow players to share XP in a party. This is a universal option.
|
||||
enableShare = true
|
||||
#Enables XP Sharing between party members regardless of distance from each other.
|
||||
globalShare = true
|
||||
#Disables XP Sharing from vanilla commands that give experience *points*.
|
||||
#(/xp add [name] [amount] points)
|
||||
ignoreCommand = true
|
||||
|
||||
[mod-support]
|
||||
#This allows for extra modded information (like cast bars) to update regardless of distance.
|
||||
#true - Enables this feature. Members have all information shared regardless of distance.
|
||||
#false - Disables this feature. Members have to be within tracking range for updates.
|
||||
#APPLIES TO: Cast Bar Element
|
||||
allowGlobalUpdates = true
|
||||
#Allow you to enable specific type of game stage syncing between party members.
|
||||
#ALL - Players can opt-in to allow all game stage syncing, including previous entries.
|
||||
#FUTURE - Players can only opt-in to allow future game stages to be synced
|
||||
#NONE - Game stage syncing is disabled completely.
|
||||
#Allowed Values: ALL, FUTURE, NONE
|
||||
syncGameStages = "NONE"
|
||||
#Specifies if Game Stages (and other mods with similar systems) should utilize server lists for syncing.
|
||||
#These white/blacklists determine what stages are allowed to be synced by the client, regardless of sync settings.
|
||||
#If the list is a whitelist, only stages in the list will be syncable.
|
||||
#For a blacklist, all stages that aren't in the list will be syncable.
|
||||
useSyncLists = false
|
||||
#Uses FTB Teams to handle party management instead. Commands will be disabled.
|
||||
useFTBTeams = false
|
||||
|
||||
[boss-module]
|
||||
#The boss module allows you to alter boss attributes and loot depending on the number of players from various types of sources.
|
||||
#true - Enables the boss module.
|
||||
#false - Disables the boss module.
|
||||
bossModuleEnabled = false
|
||||
#A list of entity IDs that the Parties mod treats as bosses. These entities will utilize the scaling of the Boss Module. Changes to this list require a restart.
|
||||
markBosses = ["minecraft:wither", "minecraft:ender_dragon", "minecraft:warden"]
|
||||
#Changes the way the player count is calculated to adjust the attributes and loot drops of bosses.
|
||||
#SERVER - Counts all online players.
|
||||
#DIMENSION - Counts all players in the same dimension.
|
||||
#RADIUS - Counts all players in a defined radius from the spawned boss. (Not functional yet)
|
||||
#PARTY - Counts all players in the nearest player's party.
|
||||
#Allowed Values: SERVER, DIMENSION, RADIUS, PARTY
|
||||
playerCountType = "DIMENSION"
|
||||
#If playerCountType is RADIUS, this defines the radius size from the boss to look for players, in meters.
|
||||
#Range: > 1
|
||||
playerCountRadius = 256
|
||||
#The health mod per player count defined above, as a total multiplier. (0.5 = 150%)
|
||||
#A value of 0 disables health modifiers.
|
||||
#Range: 0.0 ~ 2.147483647E9
|
||||
healthMod = 0.25
|
||||
#The damage mod per player count defined above, as a total multiplier. (0.5 = 150%)
|
||||
#A value of 0 disables damage modifiers.
|
||||
#Range: 0.0 ~ 2.147483647E9
|
||||
damageMod = 0.25
|
||||
#If true, scales the loot to the amount of players from the player count above.
|
||||
#Setting this value to false disables this feature.
|
||||
scaleLoot = true
|
||||
#If true, scales special loot just like above.
|
||||
#Currently determines whether you'd get more Affixed items from Apotheosis mini-bosses.
|
||||
scaleSpecialLoot = false
|
||||
|
||||
16
config/sedparties/active-preset.json
Normal file
16
config/sedparties/active-preset.json
Normal file
@ -0,0 +1,16 @@
|
||||
[
|
||||
{
|
||||
"preset": "0:EABAAAA/-3|3:AoBABAU=|4:Hu+f/AC4AkI=|5:QIgISg==|6:cAQCAQ==|7:BggXAJ275/8AAAA=|8:BghPgEW75/4FYBQ=|9:BhhQAEd+zMwBkBQ=|10:Y1PL//9TU////gXAUhR4sCAhBAM=|13:YIAgFgFHAf8XAAAA|14:OCBcA6DwAVhAAAAAC8X/xWz/bP/Fxf9sbA==|15:KCEeAmAuAVHAAAAEi//Og7yFMpteAH5MAA==|23:BRgRARIAAAA=|1:AQBgBgpQJA==|",
|
||||
"xPos": 0,
|
||||
"yPos": 204,
|
||||
"scale": 0.5,
|
||||
"anchor": "TOP_LEFT"
|
||||
},
|
||||
{
|
||||
"preset": "0:EABAAAA/-3|3:AoBABAU=|4:Hu+f/AC4AkI=|5:QIgISg==|6:cAQCAQ==|7:BggXAJ275/8AAAA=|8:BghPgEW75/4FYBQ=|9:BhhQAEd+zMwBkBQ=|10:Y1PL//9TU////gXAUhR4sCAhBAM=|13:YIAgFgFHAf8XAAAA|14:OCBcA6DwAVhAAAAAC8X/xWz/bP/Fxf9sbA==|15:KCEeAmAuAVHAAAAEi//Og7yFMpteAH5MAA==|23:BRgRARIAAAA=|1:AQBgBgpQJA==|",
|
||||
"xPos": 0,
|
||||
"yPos": 0,
|
||||
"scale": 0.5,
|
||||
"anchor": "LEFT"
|
||||
}
|
||||
]
|
||||
166
index.toml
166
index.toml
@ -1,5 +1,29 @@
|
||||
hash-format = "sha256"
|
||||
|
||||
[[files]]
|
||||
file = "config/paxi/datapacks/ExtendedFeeding/data/origins_minus/tags/entity_types/has_blood.json"
|
||||
hash = "d03a72853be2c771db8daaf74c5c57895fabc30afe70ba6d02ad6f8e212e6eb0"
|
||||
|
||||
[[files]]
|
||||
file = "config/paxi/datapacks/ExtendedFeeding/pack.mcmeta"
|
||||
hash = "bd2a241fb29cdb0f8ad2da103d7502e198dd759d3db6c91c0c46c40f7b49d72a"
|
||||
|
||||
[[files]]
|
||||
file = "config/paxi/datapacks/InchlingOrigin/data/inchlingorigin/origins/inchling.json"
|
||||
hash = "1131223b0ac353d02d9b0be081678465e8a53e7441f302b016f84bf7fb554021"
|
||||
|
||||
[[files]]
|
||||
file = "config/paxi/datapacks/InchlingOrigin/data/inchlingorigin/powers/kobito.json"
|
||||
hash = "85530f4795e1246d34e4cfcc6bd573715b8c5e38519a61d57b66ac7c1f0f7727"
|
||||
|
||||
[[files]]
|
||||
file = "config/paxi/datapacks/InchlingOrigin/data/origins/origin_layers/origin.json"
|
||||
hash = "b76b5d0f70c30259829c1d28cd0b46815bcbb39b092fd2c02b46b1ccc9b046b1"
|
||||
|
||||
[[files]]
|
||||
file = "config/paxi/datapacks/InchlingOrigin/pack.mcmeta"
|
||||
hash = "efc5d4309e27ed36838e8e7b4755e0b8c31015193534cc4e79d7aa0bc1cc0c6b"
|
||||
|
||||
[[files]]
|
||||
file = "config/paxi/datapacks/UltimineWhitelist/data/ftbultimine/tags/block/block_whitelist.json"
|
||||
hash = "70b0f49e0c79bcc4e674b55d2b78dbfe4ba1a9384e9d8fe4e8ea5640ec8397dd"
|
||||
@ -49,13 +73,13 @@ hash = "a41a3cf3204c48e0a0b48acbad66ff4dbd71a94942cb4955973a7059b686aa05"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/atmospheric.pw.toml"
|
||||
hash = "09c8d269cddf007e20e3c0a758fbfae25fc7f14f5aad6225d28b0570de30c037"
|
||||
file = "mods/autumnity.pw.toml"
|
||||
hash = "318e1c63105062eb80bf04a944b7f924222ad41267699b1058d1e6181cb579c1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/autumnity.pw.toml"
|
||||
hash = "318e1c63105062eb80bf04a944b7f924222ad41267699b1058d1e6181cb579c1"
|
||||
file = "mods/baguettelib.pw.toml"
|
||||
hash = "35e86e1132c11dde7900ffe5c75e71bdf4e6f6b399306c6a0771ef6375c36c5c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -68,11 +92,6 @@ file = "mods/bellsandwhistles.pw.toml"
|
||||
hash = "126db1f1ec01bbc4cf3393e087363e2fdbfe4a3face897ed27985b14a1a519a9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/berry-good.pw.toml"
|
||||
hash = "c410ef1d053db4fc3fccde5331fa3ebac561e0e2f6f4babe9110b9c322fbc95a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/better-archeology.pw.toml"
|
||||
hash = "735631eac59208282e2e9487466ba3c18e42388f1b521b30fc8848a2b47fb229"
|
||||
@ -133,6 +152,11 @@ file = "mods/champions-unofficial.pw.toml"
|
||||
hash = "ee2e34d00e0fc6067420fe0c0e30b3d0d266f4794a49854539a60daed7b6fdfa"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/chisels-bits.pw.toml"
|
||||
hash = "aca009f78e1223d44ba4b9683537d7acdd899b30834e25ab04a3092156725bcf"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/chloride.pw.toml"
|
||||
hash = "5fffcedde4d14f05b332a6a70680340ae2021d2697b45e49ffedb073abcb7c5c"
|
||||
@ -183,11 +207,6 @@ file = "mods/create-central-kitchen.pw.toml"
|
||||
hash = "0b69f772db857977d0e70bad04d4a8112f0963074ca07258efb44d2d3e5f4578"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/create-dreams-and-desires.pw.toml"
|
||||
hash = "23dc3517bb479f4a7275bedc75ea45362aef0ff1b240d8cd0fde2fd152032cdf"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/create-garnished-reworked.pw.toml"
|
||||
hash = "b1164b9d59034c03d52c8640f50683ab559da344805200dace67b4f1dc69d3b5"
|
||||
@ -198,11 +217,6 @@ file = "mods/create-steam-n-rails.pw.toml"
|
||||
hash = "1e2f20e482537a35dcf6be7814984f2ee75ed37f1f1861424e9c936727445c41"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/create-structures.pw.toml"
|
||||
hash = "4f64bc81a381a3cb0c637829d547d8b0f5daa0ea29fe84a9e43a91784763745e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/create.pw.toml"
|
||||
hash = "97f7c75ac9bf6ee2a4f15c0f1e3e4cd161f3d2e33f32ebf623811ac90b3c2a83"
|
||||
@ -218,11 +232,6 @@ file = "mods/death-backup.pw.toml"
|
||||
hash = "6da7992310256cd5af24f5e6409f07408204863191c0cfc006f5c04a7193b953"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/decorative-blocks.pw.toml"
|
||||
hash = "dc23ac7c75b3f33b93f5725c9d6cfb2e62575550f2b8b01683397e35ad1a3955"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/deeperdarker.pw.toml"
|
||||
hash = "eb60f70cc84efa111a51c35311a44ae352b3b9c98ec7ba4e64595ae627e33006"
|
||||
@ -273,11 +282,6 @@ file = "mods/enchanted-witchcraft.pw.toml"
|
||||
hash = "c235f3680ba04a68596ce7f6d7e93e31effbb06bb38ca9ab57cd7bebaaeb5cfe"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/endergetic.pw.toml"
|
||||
hash = "ac8886608c2af5d3406068dab4b29e63317aaee35c4a9565535f28d717cc8194"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/environmental.pw.toml"
|
||||
hash = "c5e05be38b6c548660275117d3236819d6b6d31ad4cdb7f1880ef7491077eefd"
|
||||
@ -303,21 +307,11 @@ file = "mods/explorers-compass.pw.toml"
|
||||
hash = "3136d2fa3cd097330976de6517806fb9a306b60a9c2f9f3845d1289cad11b8c4"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/explorify.pw.toml"
|
||||
hash = "a0b3f914a386d4236744bc749156bb7eca1014179a50e340af1ea4741198782f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/exposure.pw.toml"
|
||||
hash = "ce198cf0e4ac56f35c03b5e721eacbd6c6bc86b6ab318c4c7259082edb625fc2"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/extended-cogwheels.pw.toml"
|
||||
hash = "151d38474b08a1e370f8820dae5b167971eb9a5f3552823c838a76dd3ab3e1d4"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/farmers-delight.pw.toml"
|
||||
hash = "9f2ffb0d4c65fcb2a96878287a7119459b9d0637c395e5097d691416690d6563"
|
||||
@ -333,6 +327,11 @@ file = "mods/figura.pw.toml"
|
||||
hash = "51af4a776fd62c9349329b2b13e0c29f80f5d728bba7afce35e512dcf6f10beb"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/framework.pw.toml"
|
||||
hash = "376f8a190f00bd120193d7a665ebe1b03dfe329cc395f7d944f7216c1182c84d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ftb-library-forge.pw.toml"
|
||||
hash = "691798dd9acfd386bc9332249cd4c1291c646af4d97999090ec0528d9bb35c88"
|
||||
@ -355,7 +354,12 @@ metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/geckolib.pw.toml"
|
||||
hash = "88f142bda6bfa6aff4f4d4e12b8ba7581aa40e3f163039a533f09dd6d634e093"
|
||||
hash = "1030e18f2e875dfdf39de82b823e1dfe6009f21f1aaad338137d3a90504e2f7e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/gems-realm.pw.toml"
|
||||
hash = "61ec8d9812ff0c8d861e7f3030480f8a279dec774d2e6567a09146cf46ae60af"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -363,6 +367,11 @@ file = "mods/gravestone-mod.pw.toml"
|
||||
hash = "12e6cb4e6f2a5c0342a7f61ece1f118d637e53e34b6691d53b36fed317022dfd"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/gravestone-x-curios-api-compat.pw.toml"
|
||||
hash = "d7d0f86224da66c4f5309f48f60d785fc52f4ab4bc03d387b689401788ab26be"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/guideme.pw.toml"
|
||||
hash = "5b1ccd88254480f6b73358491b4ef1eff859cffdd6784dea4d1a89c8fdf74601"
|
||||
@ -383,11 +392,6 @@ file = "mods/hypertube.pw.toml"
|
||||
hash = "e45b6900634184734d8cba3b529d8647ef3237ec878eb6f918d650ea0351d751"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/immersive-armors.pw.toml"
|
||||
hash = "c05c55c2b16a86f13cd737c6fa98d53404c979afdd497e8bfd669cac34b8d917"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/immersiveengineering.pw.toml"
|
||||
hash = "f0f53a142295b7d004100bea2cf0f60b06854b40eddc9abb8a447db4e57d4883"
|
||||
@ -418,6 +422,11 @@ file = "mods/kotlin-for-forge.pw.toml"
|
||||
hash = "7ea985404ee4cc9082472c6869ec146309f526e395361b39f2f4c1a43506c41d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/kubejs.pw.toml"
|
||||
hash = "b6ed220c9069f60704dbfe19fd55c976ca56ada35bcb6918c4ad226cd842b99c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/l_enders-cataclysm.pw.toml"
|
||||
hash = "2077e6d69a10bbe27b402aa52e5a21ba1abec55b7b573e173e703908a85518ad"
|
||||
@ -448,11 +457,21 @@ file = "mods/lodestonelib.pw.toml"
|
||||
hash = "dfb4b7c9a2085a665e87ebc3d60045e3173bb602e7b3de94e29d37168083345d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-bridges.pw.toml"
|
||||
hash = "ee387ba74c2c7e999d48071408abbd1ca322e70f36e79c590a150c9572d3a9cb"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-doors.pw.toml"
|
||||
hash = "e4f414ece2ec81f6dd2dfb8c0176670a576b988f60c8b45a1f4b749b4d008c9d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-fences-and-walls.pw.toml"
|
||||
hash = "c671e975aad1c5aeeb6ddd19894baa899334cc266001402c1a956f83c465cc34"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-furniture.pw.toml"
|
||||
hash = "454c8dd01b9f5e9b9288f37230dd0e38b7a2bba8d14bf4adce738185626191bd"
|
||||
@ -463,6 +482,11 @@ file = "mods/macaws-lights-and-lamps.pw.toml"
|
||||
hash = "a205d0ab764efa4bb2eb93c114bbfde4cd3e117d117be9a941b8b56148945d0a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-paintings.pw.toml"
|
||||
hash = "5ca76dcdb8448783ed3bb933ee2cefd017406d946b1b5adf7550ba7bcffe0932"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-paths-and-pavings.pw.toml"
|
||||
hash = "bd555889b27b5518a595b27838464e1af089c282873fde02ea50c75394edb25f"
|
||||
@ -478,6 +502,11 @@ file = "mods/macaws-stairs.pw.toml"
|
||||
hash = "27745585e7d6cebb2fcb687563ce64d67a6dedc9ba1755b34d08309f591c8e92"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-trapdoors.pw.toml"
|
||||
hash = "40d34a4deede6848d6a49a9f1cf8fdd2af9dd1de058ffeb77e247099e087621f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/macaws-windows.pw.toml"
|
||||
hash = "8fb0ae9433533a1d24f9b738d6fa27f1d3091b10fd60fd9b0944b48901993c7e"
|
||||
@ -498,11 +527,6 @@ file = "mods/mana-and-artifice.pw.toml"
|
||||
hash = "2bc8d879af82d7d67fac9df413924164d78fd6eb1e9a4fda13f80c211bd1b6ff"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/moogs-voyager-structures.pw.toml"
|
||||
hash = "ff45eb76e6c044592cb2b4bf9356f87e1a5903ace3657fe7c1489b6ee11953cc"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/moonlight.pw.toml"
|
||||
hash = "02d8f73c4d1f35c4cd877ff6c988e2ea5fe35080e77a7a097b17c00233e62abc"
|
||||
@ -513,11 +537,6 @@ file = "mods/mouse-tweaks.pw.toml"
|
||||
hash = "679fa8f3b49b9ed3fbcb29d6ccdb99bce465faa01f9cec000464ac8d4fbe134f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/mrcrayfish-furniture-mod.pw.toml"
|
||||
hash = "e855300be1354899595f3e37e3f080647ae0ae0ac84df292441608c3f8327e21"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/natures-compass.pw.toml"
|
||||
hash = "362ead0883974a7de4dd711a75ccfe71b2ceadf172211934e8cd6084977c0f49"
|
||||
@ -584,8 +603,8 @@ hash = "be48890d990e03c639c5636c79bfa74bbd531c49a80487507984899c386a0bd9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/personality!.pw.toml"
|
||||
hash = "b53d0144878f1a9dd570ad3997770b2b9fc6a9578ab18131cddb421763fd2162"
|
||||
file = "mods/pehkui.pw.toml"
|
||||
hash = "1f92dd360908c1801848dcd4d14aca5640199545e7e22e76bfdb981b06fa9399"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -609,8 +628,13 @@ hash = "bbdd40b650286973d44b1931d4b8c4bcc02b02f2c5583545709347503bd13057"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/ribbits.pw.toml"
|
||||
hash = "d668582ea913944b31fda3e0cbe8bd7fda3852f960bd4f7a58fe9bba526a9037"
|
||||
file = "mods/refurbished-furniture.pw.toml"
|
||||
hash = "d0bf99ee6738fe077f5da39695f8f04aaa5fc25b5aad9387310d9d6134759500"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/rhino.pw.toml"
|
||||
hash = "5b92406160d9ea8a61ddf111caaecb7f6283678e2c40b08b72dce3eeaf20dc96"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -629,13 +653,8 @@ hash = "b8c7497acbf4890b4609b6b20de7affdd3482fc99af975d9ff6b29c075e1d8a7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/simple-hats.pw.toml"
|
||||
hash = "d230becbad974464c274e76081ff460f4b66724ef7f590cfc8fe8ff9253f2c43"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/simple-voice-chat.pw.toml"
|
||||
hash = "f62af5ab636c96e8915bb896ce4092b14b0c3a94a1d89af33853af20b1877f9d"
|
||||
file = "mods/selene.pw.toml"
|
||||
hash = "46ec2f81b9426aaf381f5310aae30a3d07b356714890419d6926bce537583c57"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
@ -693,6 +712,11 @@ file = "mods/stateobserver.pw.toml"
|
||||
hash = "3b3e9f0dde7b6b3f3be1a65e63583b36636292859e397668b9cdcd3a810b0b28"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/stone-zone.pw.toml"
|
||||
hash = "ab6fde96a32c43fba659a2c2af45a4a284e01607f7c32da15a083365858e5d24"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/supermartijn642s-config-lib.pw.toml"
|
||||
hash = "1cf9cb3955b075664ea4fba13b47fe7160975740a28864983aebd53d39c1946e"
|
||||
@ -733,11 +757,6 @@ file = "mods/true-ending.pw.toml"
|
||||
hash = "0bc775f6b740e9fa539e8237f49ce5265a15f16725fef1deeab7097ea6571099"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/twigs.pw.toml"
|
||||
hash = "08a5b69474ddf223809a4e624f123dd3886362011663989c1bbacd6b5167baf0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/upgrade-aquatic.pw.toml"
|
||||
hash = "909482378bf0ed15645bcbba896daf9e83b7ef4e100bc44d6d3a34090f13578f"
|
||||
@ -768,11 +787,6 @@ file = "mods/xaeros-world-map.pw.toml"
|
||||
hash = "7e7b7624e041a1364971057d1c47f2b74730e191f142b73aa50223f95978dd96"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/xp-tome.pw.toml"
|
||||
hash = "97afa0f6f88af304750c8f245f26c7376d34dc380dfb4a34a5924763c02ce4f5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/yungs-api.pw.toml"
|
||||
hash = "152c6732da180e958fb29f492bae2e468d4dfd423ce4d3d0d31ef31c2eec6c61"
|
||||
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Atmospheric"
|
||||
filename = "atmospheric-1.20.1-6.1.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/U9sJOFmJ/versions/B9fN8ZSq/atmospheric-1.20.1-6.1.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "ea74aaf7bbabc0745e31a01570db5c94f59004d8254641bb90cd599f639c354722108481663a479dd8d024581ca9cb890ab024ef8143e082c0711c2b6fa538fc"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "U9sJOFmJ"
|
||||
version = "B9fN8ZSq"
|
||||
13
mods/baguettelib.pw.toml
Normal file
13
mods/baguettelib.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "BaguetteLib"
|
||||
filename = "baguettelib-1.20.1-Forge-1.1.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/OfKzpbRU/versions/zcwsIJEa/baguettelib-1.20.1-Forge-1.1.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "0e9f34e0e8d8703269fd6d26a3635268d8f01d79c17355a85f07cd3cf382e84d23635c9715522e3839091caed6db723984b4df569fd06b042557fcf7f46f0f08"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "OfKzpbRU"
|
||||
version = "zcwsIJEa"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Berry Good"
|
||||
filename = "berry_good-1.20.1-7.0.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/2WZWaKCl/versions/a8xhP8dI/berry_good-1.20.1-7.0.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e7fa84113308a39104c90f2311d432694e7c6702107849bcd475f2c84c102f6ab9641fcee6c81b2bfebda24a4340b0cbb4e6aa9db76004623fd2f8a649bfe7cb"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "2WZWaKCl"
|
||||
version = "a8xhP8dI"
|
||||
13
mods/chisels-bits.pw.toml
Normal file
13
mods/chisels-bits.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Chisels & Bits - For Forge"
|
||||
filename = "chisels-and-bits-forge-1.4.148.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "bff153dc16b26a0d4f0e8ccc27b2e0fc2dc89355"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 5203366
|
||||
project-id = 231095
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Create: Dreams & Desires"
|
||||
filename = "Create-DnDesire-1.20.1-0.1b.Release-Early-Dev.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/JmybsfWs/versions/GZxkqfDv/Create-DnDesire-1.20.1-0.1b.Release-Early-Dev.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "19f93bb5229f7ae92ad27617c7ffee1dcf75b0c67942887a297fd03f26cd4886660cc7620d9e9a062d0434c6a36874e159820d878dbb36128274d5b35821ce90"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "JmybsfWs"
|
||||
version = "GZxkqfDv"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Create: Structures"
|
||||
filename = "create-structures-0.1.1-1.20.1-FORGE.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/IAnP4np7/versions/XALEBs0a/create-structures-0.1.1-1.20.1-FORGE.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3a6ea50b29c8209bb51d2742b94e3b6d6e43deba0ef4b1509cbeccbc1bcfb953105627ff0188c8176928140b05cb1fe6c4de5d4dfcd530f6c36c952f2db43743"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "IAnP4np7"
|
||||
version = "XALEBs0a"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Decorative Blocks"
|
||||
filename = "decorative_blocks-forge-1.20.1-4.1.3.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/t6BIRVZn/versions/nGmyeiug/decorative_blocks-forge-1.20.1-4.1.3.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e48dae175eb053ce0f7035e634264f8e84e60560609a5e0391bff01c3e584e6c0fa28fd88fde852b674876b8e21f923444c9ad2726326e337da2d69af0261a70"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "t6BIRVZn"
|
||||
version = "nGmyeiug"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "The Endergetic Expansion"
|
||||
filename = "endergetic-1.20.1-5.0.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/cPle5Z8G/versions/En1Ihw7Y/endergetic-1.20.1-5.0.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "593553a76aa417e4043be47d7166fae4e0a7efd854eb403cc1bcdd60f950bb61c310b3cec21f405f1931e26393835adcc2e682871e12180be68e57ac3323064a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "cPle5Z8G"
|
||||
version = "En1Ihw7Y"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Explorify"
|
||||
filename = "Explorify v1.6.2 f10-48.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/HSfsxuTo/versions/yRSH0sWM/Explorify%20v1.6.2%20f10-48.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "3d9ec324a1cbe4d98bb4b47bea721e1b629e11ba9b2c07d6da7a844b941f2ce71092edfbe56c62c8e14c7eda15652986de464b80ececb22334181510f374ccbb"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "HSfsxuTo"
|
||||
version = "yRSH0sWM"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Create: Extended Cogwheels"
|
||||
filename = "extendedgears-2.1.1-1.20.1-0.5.1.f-forge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/qO4lsa4Y/versions/ujnQ2zz6/extendedgears-2.1.1-1.20.1-0.5.1.f-forge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "0b8915ca5018a4c31f106469e5026971f0a804d642c3a11ddf2eae3c55be6bb6118685bf58bbce7e6041fcb5fd399ca4bd21095c2d65e7a2542a61c10de44fac"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "qO4lsa4Y"
|
||||
version = "ujnQ2zz6"
|
||||
13
mods/framework.pw.toml
Normal file
13
mods/framework.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Framework"
|
||||
filename = "framework-forge-1.20.1-0.7.15.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "0963ba5c19634030dbf1358b5c5f5fb341fede73"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 6531428
|
||||
project-id = 549225
|
||||
@ -1,13 +1,13 @@
|
||||
name = "GeckoLib"
|
||||
name = "Geckolib"
|
||||
filename = "geckolib-forge-1.20.1-4.8.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "395a9f21a36dc8466d67c2af67a904e7013460d1"
|
||||
mode = "metadata:curseforge"
|
||||
url = "https://cdn.modrinth.com/data/8BmcQJ2H/versions/aVW7Z5da/geckolib-forge-1.20.1-4.8.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8d8cb1f2d60c885b3b312aca63b94e3942e50ca40e96514f35fb74a39367afa07e4986640a66c66b035da9ea60cb6d8ff602e9c0b6b298e5ce584ad9f46a2f45"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 7025129
|
||||
project-id = 388172
|
||||
[update.modrinth]
|
||||
mod-id = "8BmcQJ2H"
|
||||
version = "aVW7Z5da"
|
||||
|
||||
13
mods/gems-realm.pw.toml
Normal file
13
mods/gems-realm.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Every Compat (Gems Realm)"
|
||||
filename = "gemsrealm-1.20-2.9.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/v259p1An/versions/JMmJcasE/gemsrealm-1.20-2.9.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "dd13e7532da3692c74e11803fb6958572ba380afecaf0f74e37926fd76d39ed000e5a7ba94e400cffbf95b88d956251ab3c628d61eae697dfcce4877b84b0e51"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "v259p1An"
|
||||
version = "JMmJcasE"
|
||||
13
mods/gravestone-x-curios-api-compat.pw.toml
Normal file
13
mods/gravestone-x-curios-api-compat.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Gravestone x Curios API Compat"
|
||||
filename = "gravestonecurioscompat-1.20.x-Forge-3.0.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NaiL8bPN/versions/jkxbFNyf/gravestonecurioscompat-1.20.x-Forge-3.0.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "5e6114fc9f3efc9e468ff6fc5665190356d4b53c5cd73331df174d61e1c3f4b11b7e3c812253f9b6a03b3c808b06796b3402d71f9510a524e94238fdc95e63fc"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NaiL8bPN"
|
||||
version = "jkxbFNyf"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Immersive Armors"
|
||||
filename = "immersive_armors-1.7.1+1.20.1-forge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/eE2Db4YU/versions/Ivcp8xyi/immersive_armors-1.7.1%2B1.20.1-forge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "acd82dcca4862069a36c504aa6b94d8efe003e551eb24e080598e100bebb0f8fea5d13d38f1e9ba453db17a0f2de079e23686a95dd68caa2989484819163b4d8"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "eE2Db4YU"
|
||||
version = "Ivcp8xyi"
|
||||
13
mods/kubejs.pw.toml
Normal file
13
mods/kubejs.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "KubeJS"
|
||||
filename = "kubejs-forge-2001.6.5-build.16.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/umyGl7zF/versions/g5igndAv/kubejs-forge-2001.6.5-build.16.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "819f730d2a9d980bb246d30d67793f06f6a1608381c7ce3577cf25e70dd3d595271f8fcfbf3ae037168842f660e79e49846756bd18c79793b310ff18ab826cbd"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "umyGl7zF"
|
||||
version = "g5igndAv"
|
||||
13
mods/macaws-bridges.pw.toml
Normal file
13
mods/macaws-bridges.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Macaw's Bridges"
|
||||
filename = "mcw-bridges-3.1.0-mc1.20.1forge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/GURcjz8O/versions/XSLsYKYH/mcw-bridges-3.1.0-mc1.20.1forge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "830c2c31d00b9aa170570ae0b6959d086c3bccfdb40575f94d40c0411b051978ecd82da0e8c07c8d4b3753f9b88c0e6e06426934c6f97cd7a113d6acb358a02e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "GURcjz8O"
|
||||
version = "XSLsYKYH"
|
||||
13
mods/macaws-fences-and-walls.pw.toml
Normal file
13
mods/macaws-fences-and-walls.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Macaw's Fences and Walls"
|
||||
filename = "mcw-fences-1.2.0-1.20.1forge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/GmwLse2I/versions/p0mowM7n/mcw-fences-1.2.0-1.20.1forge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "0c34a3919bdfeebe8e57f8b1e8097e0532a7710b91ff3ed0c18603e424c166ef65fee7cbb62f37113cadc6ad6b25ca9bb897e78465649e82128eb0b79d8f36f0"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "GmwLse2I"
|
||||
version = "p0mowM7n"
|
||||
13
mods/macaws-paintings.pw.toml
Normal file
13
mods/macaws-paintings.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Macaw's Paintings"
|
||||
filename = "mcw-paintings-1.0.5-1.20.1forge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/okE6QVAY/versions/yaSdsps0/mcw-paintings-1.0.5-1.20.1forge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "8be3906c309e054894480ca33a74f47c87edb5e6aef35be850fd86eeeeeeaa4afb95f6812235f4c326b726458a8e1b7f1c1685b3017b986f28abbe9f3ec0ac85"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "okE6QVAY"
|
||||
version = "yaSdsps0"
|
||||
13
mods/macaws-trapdoors.pw.toml
Normal file
13
mods/macaws-trapdoors.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Macaw's Trapdoors"
|
||||
filename = "mcw-trapdoors-1.1.4-mc1.20.1forge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/n2fvCDlM/versions/eyOMFyxY/mcw-trapdoors-1.1.4-mc1.20.1forge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e18c33b1b9025c8a249658f0656e0c4e38e19b5e9ee61ba57bbe0329c21fb1d36ee90f3b26dac22cb5e4b5599b35732c4b1f725541751295b6cb72f406920dc0"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "n2fvCDlM"
|
||||
version = "eyOMFyxY"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "MVS - Moog's Voyager Structures"
|
||||
filename = "mvs-4.1.5-1.20.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/OQAgZMH1/versions/LimCQeNx/mvs-4.1.5-1.20.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "54fb9f4558435d93e2b80435118127a82818c973a8b9cc8daec81360f97f20363891d06f35c9b19a45020cf7e3b9431e256d31169534d615aa9679c742124176"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "OQAgZMH1"
|
||||
version = "LimCQeNx"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "MrCrayfish's Furniture Mod (Legacy)"
|
||||
filename = "cfm-forge-1.20.1-7.0.0-pre36.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "66d0ac56f3f6f1efbd6ed7b3cb4a48824d0585c0"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4602980
|
||||
project-id = 55438
|
||||
13
mods/pehkui.pw.toml
Normal file
13
mods/pehkui.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Pehkui"
|
||||
filename = "Pehkui-3.8.2+1.20.1-forge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/t5W7Jfwy/versions/SQpqSgAE/Pehkui-3.8.2%2B1.20.1-forge.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "e4660f0b5af6bfe2902ab39a6fbfa911856e0567bffc47842b482731da373afa4424b9e7cf47c61a0c2107445520475053709a6671d9eb4b7f4b55597729af3f"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "t5W7Jfwy"
|
||||
version = "SQpqSgAE"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Personality"
|
||||
filename = "personality-1.20.1-4.1.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/zrAMu1nt/versions/OFaPf7iz/personality-1.20.1-4.1.0.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "52cb2060a33f2948c62d829c0f2922424cf80a5f9e6aa5d31b2ad2b07018d754f53ed6bf2374a56b431500556613a74b493ef2b74b7007a80f3e2ff88d55f250"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "zrAMu1nt"
|
||||
version = "OFaPf7iz"
|
||||
13
mods/refurbished-furniture.pw.toml
Normal file
13
mods/refurbished-furniture.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "MrCrayfish's Furniture Mod: Refurbished"
|
||||
filename = "refurbished_furniture-forge-1.20.1-1.0.14.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "b4aa83b3ad88939625da29c0adbad7eddc88c148"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 6623931
|
||||
project-id = 897116
|
||||
13
mods/rhino.pw.toml
Normal file
13
mods/rhino.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Rhino"
|
||||
filename = "rhino-forge-2001.2.3-build.10.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/sk9knFPE/versions/uNALdylI/rhino-forge-2001.2.3-build.10.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4eb6a635f3eff3baa158539bd55344421cf69b15e28f7da8bf55f370a11c071f3525063a6f81b67fbfca550ad8aaab7e6208df87f65ca6ed2851edd46f032b58"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "sk9knFPE"
|
||||
version = "uNALdylI"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Ribbits"
|
||||
filename = "Ribbits-1.20.1-Forge-3.0.4.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/8YcE8y4T/versions/CZuzLvC7/Ribbits-1.20.1-Forge-3.0.4.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "7572b9a974fbc9dd4153d7c55bf4ccffe0700db012d8c5e0d577e6a4954abdaf4fac15e8e72b146735165ab887ff643ec642d38f91f43bb78c7f1e151a82404d"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "8YcE8y4T"
|
||||
version = "CZuzLvC7"
|
||||
13
mods/selene.pw.toml
Normal file
13
mods/selene.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Moonlight Lib"
|
||||
filename = "moonlight-1.20-2.16.13-forge.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "129d43de27f584d4cde8c64a3773b1848bfc557d"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 7027387
|
||||
project-id = 499980
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Simple Hats"
|
||||
filename = "simplehats-forge-1.20.1-0.3.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/iSkQCp6b/versions/PH3QFp5w/simplehats-forge-1.20.1-0.3.2.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "5f2cf4278290a9b8893ed540eddc1e04059946aef633d611ec8d74201cf4c3b0917719f824b9463967c575c473e94a8dceef8ee6822639c094b25c50f6cac6dc"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "iSkQCp6b"
|
||||
version = "PH3QFp5w"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Simple Voice Chat"
|
||||
filename = "voicechat-forge-1.20.1-2.6.4.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9eGKb6K1/versions/kW0VZueh/voicechat-forge-1.20.1-2.6.4.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2ce9709257912a3c2341d7765bc1c74a11be4f5029274fd54103c87c0488197a2d5afad1e52c8effd997b7fce61f9c1ec1dc8e15d74e7132e2be81b2006d0b36"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9eGKb6K1"
|
||||
version = "kW0VZueh"
|
||||
13
mods/stone-zone.pw.toml
Normal file
13
mods/stone-zone.pw.toml
Normal file
@ -0,0 +1,13 @@
|
||||
name = "Every Compat (Stone Zone)"
|
||||
filename = "stonezone-1.20-2.9.3.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/uYwn8IP5/versions/1oxHHWvn/stonezone-1.20-2.9.3.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "a4c99fb8ebd93e9fcb5fab749150166e6513b19bd195dd44fd1e546bd4a00f498659463ac8b851fa7d65ecc87972e8ad80b3693993b382788781d4739606a8ae"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "uYwn8IP5"
|
||||
version = "1oxHHWvn"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "Twigs"
|
||||
filename = "Twigs-1.20.1-3.1.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/RG50cUrX/versions/lDSfygeN/Twigs-1.20.1-3.1.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "4c80428a5e9ce0b2ff16903d9ecadbeb01a063144b82e40fdab46f787c203d3a4476021b23170aa404bd69414bb6bc4a85b31c17e572e38d0ed47852f1291755"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "RG50cUrX"
|
||||
version = "lDSfygeN"
|
||||
@ -1,13 +0,0 @@
|
||||
name = "XP Tome"
|
||||
filename = "xptome-1.20.1-2.2.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/AnpW69o3/versions/SYfBGaA3/xptome-1.20.1-2.2.1.jar"
|
||||
hash-format = "sha512"
|
||||
hash = "2459901b5cd93ea5f8712b6a19397058bf13dcc88cf2fa2fd505007dd97dc0d3d03dd754f7320c3eab3fe99f81b4abed8dcf6fb28cf7ad09dc2b5e534b5f840b"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "AnpW69o3"
|
||||
version = "SYfBGaA3"
|
||||
Loading…
Reference in New Issue
Block a user